41 lines
623 B
CSS
41 lines
623 B
CSS
.main {
|
|
align-items: center;
|
|
padding: 20px 26px;
|
|
height: fit-content;
|
|
min-height: 100dvh;
|
|
max-width: 560px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.header {
|
|
padding: 8px 0 30px;
|
|
}
|
|
|
|
:global(.dark-theme) .header>button>svg>path {
|
|
fill: #BAC2EE;
|
|
}
|
|
|
|
.header-title {
|
|
color: #275CA7;
|
|
}
|
|
|
|
:global(.dark-theme) .header>svg>path {
|
|
fill: #4F8DE5;
|
|
}
|
|
|
|
.page {
|
|
width: 100%;
|
|
height: fit-content;
|
|
padding-bottom: 32px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.payment-modal-hide {
|
|
transform: translateY(150%);
|
|
}
|
|
|
|
.payment-modal-active {
|
|
animation: appearance 1s;
|
|
} |