From db9e07886c8c9c1261b721839032ebe24d77d7c7 Mon Sep 17 00:00:00 2001 From: Yangshun Tay Date: Wed, 31 Oct 2018 10:49:12 -0700 Subject: [PATCH] chore(v2): fix copyright header again --- v2/lib/theme/Loading/styles.module.css | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/v2/lib/theme/Loading/styles.module.css b/v2/lib/theme/Loading/styles.module.css index c783a0a18a..c4f027a6d7 100644 --- a/v2/lib/theme/Loading/styles.module.css +++ b/v2/lib/theme/Loading/styles.module.css @@ -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 { width: 100%; height: 49px; @@ -10,13 +17,17 @@ width: 49px; height: 49px; margin: 0 auto; - border: 5px solid #cccccc; + border: 5px solid #ccc; border-radius: 50%; border-top: 5px solid #1d4d8b; animation: loader-spin infinite 1s linear; } @keyframes loader-spin { - from { transform: rotate(0deg); } - to { transform: rotate(360deg); } -} \ No newline at end of file + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +}