From 9133bf361cf0f11b5de1e09d30cc7f60c96bf261 Mon Sep 17 00:00:00 2001 From: ryota-murakami Date: Fri, 20 Apr 2018 02:19:33 +0900 Subject: [PATCH] fix(src/components/loading/style): align indent --- src/components/loading/style.js | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/components/loading/style.js b/src/components/loading/style.js index 6b2e48a7eb..dfb10c153f 100644 --- a/src/components/loading/style.js +++ b/src/components/loading/style.js @@ -7,15 +7,15 @@ import { hexa, FlexCol, zIndex } from '../globals'; import Link from 'src/components/link'; const containerFadeIn = keyframes` - 0%{ - opacity: 0; - } + 0%{ + opacity: 0; + } 99% { opacity: 0; } - 100%{ - opacity: 1 - } + 100%{ + opacity: 1 + } `; export const LoadingScreenContainer = styled.div` @@ -246,16 +246,16 @@ export const ShimmerSelect = styled.div` `; const placeHolderShimmer = keyframes` - 0%{ - transform: translateX(-100%) translateY(0%); - background-size: 100%; - opacity: 1; - } - 100%{ - transform: translateX(200%) translateY(0%); - background-size: 500%; - opacity: 0; - } + 0%{ + transform: translateX(-100%) translateY(0%); + background-size: 100%; + opacity: 1; + } + 100%{ + transform: translateX(200%) translateY(0%); + background-size: 500%; + opacity: 0; + } `; export const ShimmerBase = styled.section`