disable title on small reponsive screens (#1527)

This commit is contained in:
Kevin Papst
2020-03-06 02:20:30 +01:00
committed by GitHub
parent 20b3c31cbd
commit 9907694ef6
5 changed files with 13 additions and 4 deletions

View File

@@ -6,6 +6,7 @@
*/
@import 'variables';
@import 'layout';
@import 'error-page';
@import 'print';
@import 'content';

8
assets/sass/layout.scss Normal file
View File

@@ -0,0 +1,8 @@
@media (max-width: $screen-sm-min) {
.main-header .logo {
display: none;
}
.fixed .content-wrapper, .fixed .right-side, .control-sidebar, .main-sidebar {
padding-top: 50px;
}
}