| 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 */ | |
| 5 | 4 |
| 6 :host { | 5 :host { |
| 7 align-items: center; | 6 align-items: center; |
| 8 display: flex; | 7 display: flex; |
| 9 flex-direction: column; | 8 flex-direction: column; |
| 10 justify-content: center; | 9 justify-content: center; |
| 11 } | 10 } |
| 12 | 11 |
| 13 paper-spinner { | 12 paper-spinner { |
| 14 --paper-spinner-layer-1-color: var(--google-blue-500); | 13 --paper-spinner-layer-1-color: var(--google-blue-500); |
| 15 --paper-spinner-layer-2-color: var(--google-blue-500); | 14 --paper-spinner-layer-2-color: var(--google-blue-500); |
| 16 --paper-spinner-layer-3-color: var(--google-blue-500); | 15 --paper-spinner-layer-3-color: var(--google-blue-500); |
| 17 --paper-spinner-layer-4-color: var(--google-blue-500); | 16 --paper-spinner-layer-4-color: var(--google-blue-500); |
| 18 } | 17 } |
| 19 | 18 |
| 20 paper-spinner { | 19 paper-spinner { |
| 21 height: 38px; | 20 height: 38px; |
| 22 margin-bottom: 28px; | 21 margin-bottom: 28px; |
| 23 width: 38px; | 22 width: 38px; |
| 24 } | 23 } |
| 25 | 24 |
| 26 #spinner-comment { | 25 #spinner-comment { |
| 27 color: #747474; | 26 color: #747474; |
| 28 font-size: 13px; | 27 font-size: 13px; |
| 29 } | 28 } |
| OLD | NEW |