mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 21:38:13 +00:00
39 lines
550 B
SCSS
39 lines
550 B
SCSS
@import './variables.scss';
|
|
|
|
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 4;
|
|
|
|
overflow: auto;
|
|
background: $primaryCol;
|
|
|
|
box-shadow: 0 0 15px 5px #292929;
|
|
|
|
width: 650px;
|
|
max-height: 95%;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
@include smallScreen {
|
|
width: 95%;
|
|
}
|
|
|
|
&-exit {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin: 0.3em 0em;
|
|
|
|
img {
|
|
width: 1.6em;
|
|
}
|
|
|
|
cursor: pointer;
|
|
}
|
|
} |