mars-interface/src/components/common/TermsOfService/TermsOfService.module.scss
Linkie Link 3de11356d4
v1.4.8
2023-06-08 10:18:17 +02:00

40 lines
662 B
SCSS

@import 'src/styles/master';
.container {
backdrop-filter: blur(rem-calc(50));
background-color: rgba(0, 0, 0, 0.1);
position: fixed;
left: 0;
top: 0;
z-index: 1;
right: 0;
bottom: 0;
display: grid;
place-items: center;
.card {
max-width: min(rem-calc(500), 95vw);
@include padding(2, 4, 8, 4);
max-height: 100vh;
overflow-y: auto;
.subtitle {
text-align: center;
@include padding(4, 0, 0, 0);
}
.btn {
@include margin(6, 0, 0);
width: 100%;
}
}
}
@media only screen and (min-width: $bpXSmallLow) {
.container {
.card {
@include padding(2, 12, 12, 12);
}
}
}