File tree Expand file tree Collapse file tree 2 files changed +20
-20
lines changed Expand file tree Collapse file tree 2 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -70,12 +70,10 @@ noscript {
70
70
}
71
71
72
72
.header {
73
- color : white;
74
- position : relative;
75
- height : 100px ;
76
- display : flex;
73
+ display : grid;
74
+ grid-template-columns : auto auto 1fr auto;
77
75
align-items : center;
78
- justify-content : space-between ;
76
+ color : white ;
79
77
80
78
a {
81
79
color : white; text-decoration : none;
@@ -116,6 +114,8 @@ input.search {
116
114
117
115
.mobile-search {
118
116
display : none;
117
+ grid-row : 2 ;
118
+ grid-column : span 4 ;
119
119
margin-bottom : 10px ;
120
120
margin-left : 5px ;
121
121
margin-right : 5px ;
Original file line number Diff line number Diff line change 101
101
</dd .Menu>
102
102
</Dropdown >
103
103
</div >
104
- </header >
105
104
106
- <form local-class =' mobile-search' action =' /search' {{ action " search" on =" submit" }} >
107
- <input
108
- type =" text"
109
- local-class =" search"
110
- name =" q"
111
- id =" cargo-mobile-search"
112
- placeholder =" Search"
113
- value ={{ this.searchQuery }}
114
- oninput ={{ action (mut this.searchQuery ) value =" target.value" }}
115
- autocorrect =" off"
116
- required
117
- >
118
- <label for =" cargo-mobile-search" local-class =" search-label" >Search</label >
119
- </form >
105
+ <form local-class =' mobile-search' action =' /search' {{ action " search" on =" submit" }} >
106
+ <input
107
+ type =" text"
108
+ local-class =" search"
109
+ name =" q"
110
+ id =" cargo-mobile-search"
111
+ placeholder =" Search"
112
+ value ={{ this.searchQuery }}
113
+ oninput ={{ action (mut this.searchQuery ) value =" target.value" }}
114
+ autocorrect =" off"
115
+ required
116
+ >
117
+ <label for =" cargo-mobile-search" local-class =" search-label" >Search</label >
118
+ </form >
119
+ </header >
120
120
121
121
<main local-class =" main" >
122
122
<FlashMessage @message ={{ this.flashMessages.message }} />
You can’t perform that action at this time.
0 commit comments