Skip to content

Commit 61e9290

Browse files
committed
style: don't hide search on sizes smaller than desktop
.site-header__search flex item aligned to right on tablet size
1 parent cd86dd6 commit 61e9290

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

sass/_header.scss

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@
7272
}
7373

7474
.site-header__search {
75-
display: none;
75+
display: block;
7676

77-
@include desktop {
78-
display: block;
77+
input {
78+
padding: 0.2rem;
79+
font-size: initial;
80+
}
7981

80-
input {
81-
padding: 0.2rem;
82-
font-size: initial;
83-
}
82+
@include tablet {
83+
margin-left: auto;
8484
}
8585
}
8686

0 commit comments

Comments
 (0)