Minor fixes

This commit is contained in:
Schmelczer András 2020-01-18 22:44:37 +01:00
parent fd14613db7
commit 904c9d345f
5 changed files with 25 additions and 133 deletions

View file

@ -16,6 +16,7 @@
img {
@include square($img-size);
border-radius: 100%;
cursor: pointer;
}
p {

View file

@ -5,23 +5,24 @@
@include center-children();
display: none;
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
width: 100%;
height: 100%;
margin: 0;
z-index: 2;
background-color: rgba(0, 0, 0, 0.85);
@include on-large-screen {
#container > * {
#container > * {
width: auto;
height: auto;
@include on-large-screen {
max-width: 80vw;
max-height: 80vh;
}
}
@include on-small-screen {
#container > * {
@include on-small-screen {
max-width: 95vw;
max-height: 95vh;
}