Skip to content
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.

fix(src/components/loading/style): align indent #2916

Merged
merged 1 commit into from
Apr 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions src/components/loading/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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`
Expand Down