45 lines
660 B
SCSS
45 lines
660 B
SCSS
.container {
|
|
width: 100%;
|
|
}
|
|
|
|
.title {
|
|
font-size: 28px;
|
|
font-weight: 500;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.text {
|
|
font-size: 20px;
|
|
line-height: 25px;
|
|
text-align: center;
|
|
margin-bottom: 74px;
|
|
}
|
|
|
|
.buttons-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
padding-top: 24px;
|
|
|
|
& > .button {
|
|
width: 48%;
|
|
min-width: 0px;
|
|
font-size: 23px;
|
|
height: 44px;
|
|
min-height: 0px;
|
|
|
|
&.back-button {
|
|
background: none;
|
|
color: #2c2c2c;
|
|
border: solid #2c2c2c 2px;
|
|
}
|
|
}
|
|
}
|
|
|
|
:global(body.dark-theme) {
|
|
.buttons-container > .button.back-button {
|
|
color: #fff;
|
|
border-color: #fff;
|
|
}
|
|
}
|