receptty.org/sass/_filters.scss

18 lines
325 B
SCSS
Raw Normal View History

2021-02-02 21:46:24 +01:00
.filters {
2021-02-03 20:04:06 +01:00
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
column-gap: .5em;
margin-bottom: 3em;
2021-02-02 21:46:24 +01:00
input {
2021-02-03 20:04:06 +01:00
padding: .6em 1em;
2022-12-12 15:01:31 +01:00
font-family: inherit;
2021-02-02 21:46:24 +01:00
font-size: 1em;
2021-02-03 20:04:06 +01:00
background: #fff;
border: 1px solid $border;
border-radius: $article-border-radius;
2021-02-02 21:46:24 +01:00
}
2021-02-03 20:04:06 +01:00
input:first-child { grid-column: 2 / span 2; }
2021-02-02 21:46:24 +01:00
}