43 lines
644 B
SCSS
43 lines
644 B
SCSS
.container {
|
|
width: 100%;
|
|
padding: 16px;
|
|
border-radius: 12px;
|
|
background-color: #f0f0f4;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
padding: 16px 8px;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.cell {
|
|
width: 100%;
|
|
line-height: 1.5;
|
|
font-size: 16px;
|
|
color: #7d8785;
|
|
|
|
&:nth-child(2) {
|
|
color: #090909;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
|
|
.buttonCancel.buttonCancel {
|
|
background-color: transparent;
|
|
padding: 0;
|
|
|
|
& > .buttonCancelText {
|
|
text-decoration: underline;
|
|
}
|
|
}
|