| OLD | NEW |
| 1 /* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file */ | 1 /* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file */ |
| 2 /* for details. All rights reserved. Use of this source code is governed by a */ | 2 /* for details. All rights reserved. Use of this source code is governed by a */ |
| 3 /* BSD-style license that can be found in the LICENSE file. */ | 3 /* BSD-style license that can be found in the LICENSE file. */ |
| 4 | 4 |
| 5 @stylet AdaptiveLayout { | 5 @stylet AdaptiveLayout { |
| 6 #grid { | 6 #grid { |
| 7 display: -dart-grid; | 7 display: -dart-grid; |
| 8 grid-columns: auto minmax(min-content, 1fr); | 8 grid-columns: auto minmax(min-content, 1fr); |
| 9 grid-rows: auto minmax(min-content, 1fr) auto; | 9 grid-rows: auto minmax(min-content, 1fr) auto; |
| 10 } | 10 } |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 #E { | 307 #E { |
| 308 grid-column: 1; grid-row: 1; | 308 grid-column: 1; grid-row: 1; |
| 309 grid-column-span: 2; | 309 grid-column-span: 2; |
| 310 grid-row-span: 2; | 310 grid-row-span: 2; |
| 311 grid-layer: 5; | 311 grid-layer: 5; |
| 312 grid-column-align: center; | 312 grid-column-align: center; |
| 313 grid-row-align: center; | 313 grid-row-align: center; |
| 314 } | 314 } |
| 315 } | 315 } |
| 316 | 316 |
| OLD | NEW |