in small screesn: reduced space around menu items, wider container

This commit is contained in:
jorge 2022-03-01 16:27:24 +01:00
parent 528254875d
commit 488cc5cf79
3 changed files with 24 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -64,7 +64,7 @@ main {
.entry-content,.omekas-entry-content {
@include breakpoint(small){
@include xy-cell(12);
padding: $global-padding*2 ;
padding: $global-padding*2 $global-padding/2 ;
margin:0 auto;
}
@include breakpoint(medium){

View File

@ -6,3 +6,25 @@
justify-content: flex-start;
}
}
.hero {
@include breakpoint(small) {
aside {
nav {
.dropdown.menu > li > a {
padding: $global-menu-padding/2;
}
}
}
}
@include breakpoint(medium) {
aside {
nav {
.dropdown.menu > li > a {
padding: $global-menu-padding;
}
}
}
}
@include breakpoint(large) {
}
}