mobile media queries

This commit is contained in:
andres alcocer
2018-11-20 00:21:26 -05:00
parent fb5fe91325
commit 494925c886
5 changed files with 55 additions and 17 deletions

View File

@@ -22,6 +22,10 @@
justify-content: flex-start;
align-items: center;
@include responsive(phone) {
margin-left: 1rem;
}
a:first-child {
padding-left: .2%;
color: $color-red;
@@ -35,6 +39,10 @@
width: 2.2rem;
padding-right: 2.5rem;
@include responsive(phone) {
display: none;
}
}
&--userLogo {
@@ -49,6 +57,10 @@
@include responsive(tab_port) {
margin-right: 3rem;
}
@include responsive(phone) {
display: none;
}
&:hover > .dropdownContent {
@@ -84,6 +96,10 @@
display: inline-block;
}
@include responsive(phone) {
display: none;
}
}
&--logo {
@@ -134,15 +150,17 @@
border: 1px solid #fff;
transition: width .5s;
cursor: pointer;
opacity: 0;
&:focus {
padding-left: 4rem;
width: 22rem;
cursor: text;
opacity: 1;
@include responsive(phone) {
width: 16rem;
}
}
}
}