| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 #storageManagerPage { | 5 #storageManagerPage { |
| 6 min-width: 292px; | 6 min-width: 320px; |
| 7 } | 7 } |
| 8 |
| 9 .storage-manager-item, |
| 10 .storage-manager-subitem { |
| 11 -webkit-padding-end: 20px; |
| 12 display: flex; |
| 13 font-size: 108.33%; /* go to 13px from 12px */ |
| 14 justify-content: space-between; |
| 15 margin: 12px 0; |
| 16 } |
| 17 |
| 18 .storage-manager-item { |
| 19 -webkit-padding-start: 20px; |
| 20 } |
| 21 |
| 22 .storage-manager-subitem { |
| 23 -webkit-padding-start: 40px; |
| 24 } |
| 25 |
| 26 .storage-manager-item-size { |
| 27 color: rgb(153, 153, 153); |
| 28 } |
| OLD | NEW |