Skip to content
Snippets Groups Projects
Commit 1898413d authored by Chris Lawton's avatar Chris Lawton
Browse files

make buttons fill width under mob landscape

parent 20b06d59
No related branches found
No related tags found
No related merge requests found
......@@ -80,12 +80,19 @@
// Button mixin
@mixin button($bg, $hover-bg) {
width: 100%;
padding: 10px 60px;
font-weight: $weight--bold;
color: $color--white;
text-align: center;
background: $bg;
transition: color, background, border, $transition;
@include media-query(mob-landscape) {
width: auto;
text-align: left;
}
&:hover,
&:active {
cursor: pointer;
......
......@@ -12,6 +12,7 @@
.form--filters & {
width: 100%;
height: 100%;
text-align: center;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment