Footer widget: remove padding left in menu and pages; max width in text widget.

This commit is contained in:
Fabiano Alencar 2018-05-08 11:39:01 -03:00
parent 07f7c25455
commit f4f37d8f16
1 changed files with 18 additions and 1 deletions

View File

@ -324,7 +324,11 @@ footer{
input[type=checkbox]{ input[type=checkbox]{
display: none; display: none;
} }
ul{
&:nth-of-type(1) {
margin: 5px 0 0.5em 0;
}
}
> ul{ > ul{
width: 10vw; width: 10vw;
padding-left: 0; padding-left: 0;
@ -332,11 +336,24 @@ footer{
&:nth-of-type(n + 6){ &:nth-of-type(n + 6){
display: none; display: none;
} }
.children{
padding-left: 0;
}
} }
} }
div > ul{ div > ul{
width: 10vw; width: 10vw;
padding-left: 0; padding-left: 0;
li{
&.menu-item{
.sub-menu{
padding-left: 0;
}
}
}
}
.textwidget{
max-width: 200px;
} }
.gallery{ .gallery{
display: grid; display: grid;