69 lines
1.2 KiB
SCSS
69 lines
1.2 KiB
SCSS
@import '../../../../styles/variables';
|
|
|
|
.checkout-page__submit-bar {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: $card;
|
|
border-top: 0.5px solid rgba(0, 0, 0, 0.06);
|
|
padding: 10px 18px 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
z-index: 50;
|
|
}
|
|
|
|
.checkout-page__submit-left {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.checkout-page__submit-label {
|
|
font-size: 11px;
|
|
color: $text-4;
|
|
}
|
|
|
|
.checkout-page__submit-price {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 1px;
|
|
margin-top: 1px;
|
|
}
|
|
|
|
.checkout-page__submit-unit {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: $primary-dark;
|
|
}
|
|
|
|
.checkout-page__submit-value {
|
|
font-size: 28px;
|
|
font-weight: 800;
|
|
color: $primary-dark;
|
|
line-height: 1;
|
|
}
|
|
|
|
.checkout-page__submit-saved {
|
|
font-size: 11px;
|
|
color: $primary;
|
|
margin-top: 1px;
|
|
}
|
|
|
|
.checkout-page__submit-btn {
|
|
height: 50px;
|
|
min-width: 140px;
|
|
padding: 0 32px;
|
|
border-radius: 25px;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
background: linear-gradient(135deg, $primary 0%, $primary-dark 100%);
|
|
box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6px;
|
|
letter-spacing: 0.5px;
|
|
}
|