Skip to content
Snippets Groups Projects
Commit 4cb5930a authored by Bernard Roland (Student Com20)'s avatar Bernard Roland (Student Com20)
Browse files

The stats in the sidebar now hide on small screens

parent 4510e411
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@
visibility: hidden;
padding: 50px 30px;
color: s.$white;
overflow: auto;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
......@@ -153,6 +153,16 @@
background: s.$white;
}
}
@media screen and (max-height: 750px) {
display: none
}
@include mx.breakpoint(medium) {
@media screen and (max-height: 950px) {
display: none
}
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment