| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 | 5 |
| 6 #custom-controller { | 6 #custom-controller { |
| 7 display: inline-block; | 7 display: inline-block; |
| 8 height: 136px; | 8 height: 136px; |
| 9 width: 100%; | 9 width: 100%; |
| 10 } | 10 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 #route-information { | 29 #route-information { |
| 30 -webkit-padding-end: var(--dialog-padding-end); | 30 -webkit-padding-end: var(--dialog-padding-end); |
| 31 -webkit-padding-start: 44px; | 31 -webkit-padding-start: 44px; |
| 32 background-color: white; | 32 background-color: white; |
| 33 font-size: 1.2em; | 33 font-size: 1.2em; |
| 34 line-height: 1.5em; | 34 line-height: 1.5em; |
| 35 margin-top: 16px; | 35 margin-top: 16px; |
| 36 overflow: hidden; | 36 overflow: hidden; |
| 37 } | 37 } |
| 38 | |
| 39 #start-casting-to-route-button { | |
| 40 @apply(--layout-flex); | |
| 41 } | |
| OLD | NEW |