30 lines
406 B
SCSS
30 lines
406 B
SCSS
.popup-content {
|
|
background-color: #f5f7fa;
|
|
border-radius: 15px 15px 0 0;
|
|
padding-bottom: Max(env(safe-area-inset-bottom), 12px) !important;
|
|
}
|
|
|
|
.list {
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.item {
|
|
gap: 20px;
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.left {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
.right {
|
|
background-color: $theme-color-500;
|
|
border-radius: 5px;
|
|
padding: 6px;
|
|
}
|