Add styles for mobile overview page

This commit is contained in:
Mathias Schopmans
2017-04-03 17:34:17 +02:00
parent 7562af6d02
commit 608a5c2520
5 changed files with 24 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
.filter {
margin-bottom: 40px;
/* @todo: re-enable filter for mobile */
@media (--until-sm) {
display: none;
}
}

View File

@@ -45,6 +45,7 @@
background: #fff;
margin: 0 -15px;
padding: 15px;
min-height: 300px;
&__aside {
padding: 20px 0

View File

@@ -5,7 +5,11 @@
position: relative;
padding: 0 0 0 200px;
min-height: 80px;
@media (--until-md) {
padding: 0 0 0 50px;
}
}
&__letter {
font-size: 50px;
line-height: 80px;
@@ -13,5 +17,8 @@
position: absolute;
left: 50px;
top: 0;
@media (--until-md) {
left: 0;
}
}
}

View File

@@ -30,4 +30,13 @@
transition-delay: 0s;
}
}
&--relations {
@media (--until-md) {
.nav__item {
display: block;
margin: 5px 0 0;
}
}
}
}