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