27 lines
472 B
SCSS
27 lines
472 B
SCSS
.container.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
-webkit-box-align: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: fit-content;
|
|
max-width: 560px;
|
|
position: fixed;
|
|
bottom: 0dvh;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
margin-top: 0px;
|
|
padding-bottom: 20px;
|
|
padding-inline: 15px;
|
|
z-index: 5;
|
|
}
|
|
|
|
.button.button {
|
|
padding-block: 16px;
|
|
}
|
|
|
|
.skipButton.skipButton {
|
|
background-color: transparent;
|
|
text-decoration: underline;
|
|
}
|