mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-09 07:07:25 +02:00
chore(v2): fix copyright header again
This commit is contained in:
parent
e788dc4122
commit
db9e07886c
1 changed files with 15 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) 2017-present, Facebook, Inc.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
.loader {
|
.loader {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 49px;
|
height: 49px;
|
||||||
|
@ -10,13 +17,17 @@
|
||||||
width: 49px;
|
width: 49px;
|
||||||
height: 49px;
|
height: 49px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
border: 5px solid #cccccc;
|
border: 5px solid #ccc;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
border-top: 5px solid #1d4d8b;
|
border-top: 5px solid #1d4d8b;
|
||||||
animation: loader-spin infinite 1s linear;
|
animation: loader-spin infinite 1s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes loader-spin {
|
@keyframes loader-spin {
|
||||||
from { transform: rotate(0deg); }
|
from {
|
||||||
to { transform: rotate(360deg); }
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue