mirror of
https://github.com/cerc-io/mars-interface.git
synced 2026-01-20 14:54:07 +00:00
40 lines
662 B
SCSS
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);
|
|
}
|
|
}
|
|
}
|