Files
stacjownik/src/styles/card.scss
T
2021-07-11 20:11:35 +02:00

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;
}
}