1
0
mirror of https://github.com/pattern-lab/patternlab-php.git synced 2025-03-15 19:39:42 +01:00

hiding the pattern search on smaller screens

This commit is contained in:
Dave Olsen 2014-02-23 22:40:05 -05:00
parent c0e8a42032
commit 2cc0e46636
2 changed files with 20 additions and 0 deletions

View File

@ -281,6 +281,16 @@
border: 0;
border-left: 1px solid rgba(255, 255, 255, 0.05); } }
.sg-find {
display: none;
}
@media all and (min-width: 48em) {
.sg-find {
display: block;
}
}
#sg-form {
margin: 0;
border: 0;

View File

@ -413,6 +413,16 @@ $animate-quick: 0.2s;
}
}
.sg-find {
display: none;
}
@media all and (min-width: $sg-bp-med) {
.sg-find {
display: block;
}
}
#sg-form {
margin: 0;
border: 0;