36 lines
593 B
SCSS
36 lines
593 B
SCSS
.bankCardWrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 92px;
|
|
box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.15);
|
|
.decoration {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 5px;
|
|
flex-shrink: 0;
|
|
.left {
|
|
flex: 0 1 95px;
|
|
background-color: #0f3675;
|
|
}
|
|
.right {
|
|
flex: 1;
|
|
background-color: #29bbe4;
|
|
}
|
|
}
|
|
.bankCardContent {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
column-gap: 15px;
|
|
height: 100%;
|
|
.addText {
|
|
display: flex;
|
|
align-items: center;
|
|
column-gap: 8px;
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
}
|