205 lines
3.0 KiB
SCSS
205 lines
3.0 KiB
SCSS
@use '../../../styles/mixins';
|
|
|
|
.root {
|
|
z-index: calc(var(--z-media-viewer) - 1);
|
|
}
|
|
|
|
.root :global(.modal-content) {
|
|
padding: 0;
|
|
}
|
|
|
|
.root :global(.modal-dialog) {
|
|
height: min(calc(55vh + 41px + 193px), 90vh);
|
|
max-width: 26.25rem;
|
|
}
|
|
|
|
.root :global(.modal-dialog),
|
|
.root :global(.modal-content),
|
|
.transition {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.main {
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
padding: 0.5rem;
|
|
position: relative;
|
|
|
|
@include mixins.adapt-padding-to-scrollbar(0.5rem);
|
|
|
|
@include mixins.side-panel-section;
|
|
}
|
|
|
|
.secondaryInfo {
|
|
font-size: 0.875rem;
|
|
color: var(--color-text-secondary);
|
|
background-color: var(--color-background-secondary);
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
|
|
.logo {
|
|
margin: 1rem;
|
|
width: 6.25rem;
|
|
height: 6.25rem;
|
|
min-height: 6.25rem;
|
|
}
|
|
|
|
.logoBackground {
|
|
position: absolute;
|
|
top: 0.75rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
height: 8rem;
|
|
}
|
|
|
|
.headerHext {
|
|
font-size: 1.5rem;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
margin-inline: 0.5rem;
|
|
}
|
|
|
|
.description {
|
|
text-align: center;
|
|
margin-inline: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
text-wrap: balance;
|
|
}
|
|
|
|
.header {
|
|
z-index: 2;
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 0.0625rem solid var(--color-borders);
|
|
position: absolute;
|
|
width: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
height: 3.5rem;
|
|
padding: 0.5rem;
|
|
background: var(--color-background);
|
|
transition: 0.25s ease-out transform;
|
|
}
|
|
|
|
.starHeaderText {
|
|
font-size: 1.25rem;
|
|
font-weight: 500;
|
|
margin: 0 0 0 3rem;
|
|
unicode-bidi: plaintext;
|
|
}
|
|
|
|
.hiddenHeader {
|
|
transform: translateY(-100%);
|
|
}
|
|
|
|
.closeButton {
|
|
position: absolute;
|
|
top: 0.5rem;
|
|
left: 0.5rem;
|
|
z-index: 3;
|
|
}
|
|
|
|
.balance {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
line-height: 1;
|
|
}
|
|
|
|
.smallerText {
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.balanceBottom {
|
|
font-weight: 500;
|
|
display: flex;
|
|
gap: 0.25rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.modalBalance {
|
|
position: absolute;
|
|
top: 0.75rem;
|
|
right: 1.25rem;
|
|
z-index: 3;
|
|
}
|
|
|
|
.options {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 0.5rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.optionFullWidth {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.starButton {
|
|
grid-column: 1/-1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.paymentContent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.paymentImages {
|
|
display: grid;
|
|
grid-auto-columns: 3.5rem;
|
|
grid-auto-flow: column;
|
|
place-items: center;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
}
|
|
|
|
.paymentPhoto {
|
|
outline: 0.25rem solid var(--color-background);
|
|
z-index: 1;
|
|
}
|
|
|
|
.paymentImageBackground {
|
|
height: 7rem;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.paymentAmount {
|
|
display: flex;
|
|
line-height: 1.125;
|
|
gap: 0.125rem;
|
|
}
|
|
|
|
.paymentButton {
|
|
display: flex;
|
|
gap: 0.125rem;
|
|
}
|
|
|
|
.paymentButtonStar {
|
|
--color-fill: white !important;
|
|
}
|
|
|
|
.transactions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|