You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
301 B
SCSS
17 lines
301 B
SCSS
.filters {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
column-gap: .5em;
|
|
margin-bottom: 3em;
|
|
|
|
input {
|
|
padding: .6em 1em;
|
|
font-size: 1em;
|
|
background: #fff;
|
|
border: 1px solid $border;
|
|
border-radius: $article-border-radius;
|
|
}
|
|
|
|
input:first-child { grid-column: 2 / span 2; }
|
|
}
|