File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
guides/release/components
public/images/ember-core-concepts Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -148,8 +148,15 @@ body {
148
148
149
149
form {
150
150
display : grid ;
151
- grid-column : span 2 ;
152
151
grid-template-columns : 1fr 6em ;
152
+ grid-template-rows : repeat (2 , 1fr );
153
+ grid-column-gap : 0px ;
154
+ grid-row-gap : 0px ;
155
+ grid-column : span 2 ;
156
+ }
157
+
158
+ form > label {
159
+ grid-area : 1 / 1 / 2 / 2 ;
153
160
}
154
161
155
162
form > input {
@@ -159,13 +166,15 @@ form > input {
159
166
border : 1px solid #cccccc ;
160
167
border-right : none ;
161
168
font-size : 1em ;
169
+ grid-area : 2 / 1 / 3 / 2 ;
162
170
}
163
171
164
172
form > button {
165
173
border-top-right-radius : 0.5em ;
166
174
border-bottom-right-radius : 0.5em ;
167
175
border : 1px solid #cccccc ;
168
176
font-size : 1em ;
177
+ grid-area : 2 / 2 / 3 / 3 ;
169
178
}
170
179
```
171
180
You can’t perform that action at this time.
0 commit comments