| OLD | NEW |
| 1 /* Copyright 2017 The Chromium Authors. All rights reserved. | 1 /* Copyright 2017 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 #autoScanTimeLabel * { | 5 #autoScanTimeLabel * { |
| 6 clear: left; | 6 clear: left; |
| 7 float: left; | 7 float: left; |
| 8 } | 8 } |
| 9 |
| 10 .container::after { |
| 11 clear: both; |
| 12 content: ''; |
| 13 display: block; |
| 14 } |
| 15 |
| 16 #keyboardMappingDiv * { |
| 17 float: left; |
| 18 } |
| 19 |
| 20 #keyboardMappingDiv label { |
| 21 clear: left; |
| 22 } |
| 23 |
| 24 #keyboardMappingDiv span { |
| 25 white-space: pre-wrap; |
| 26 } |
| OLD | NEW |