diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-03-23 21:21:02 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2021-03-23 21:30:19 +0100 |
commit | fa76107eeca937667e10648e9bccb4decd343268 (patch) | |
tree | 8f069810603f70a252b0217672c13902df90e5ab /src/sass/_header.sass | |
parent | 8a04db5cdb1fad22ddc0764cb60b2e5a9822a417 (diff) |
feat: add search field
Diffstat (limited to 'src/sass/_header.sass')
-rw-r--r-- | src/sass/_header.sass | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/sass/_header.sass b/src/sass/_header.sass index e64a031..36114af 100644 --- a/src/sass/_header.sass +++ b/src/sass/_header.sass @@ -6,6 +6,12 @@ header padding: 10px 0 box-shadow: rgba(0, 0, 0, 0.2) 0 2px 0px margin-bottom: 30px + .container + display: grid + grid-template-columns: 70% 30% + @include breakpoint(phablet) + grid-template-columns: 100% + justify-items: center h1 font-size: 3em margin: 0 @@ -13,3 +19,8 @@ header color: $color-w !important @include breakpoint(phablet) text-align: center + + form + display: flex + @include breakpoint(phablet) + margin-top: 50px |