Skip to content

Commit

Permalink
Fix: Spinner 화면 정중앙 배치
Browse files Browse the repository at this point in the history
  • Loading branch information
haeyonghahn committed Jun 17, 2024
1 parent cf57a45 commit 8bbbc87
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/Spinner/Spinner.styled.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import { motion } from "framer-motion";
import styled from "styled-components";

export const Container = styled.div``;
export const Container = styled.div`
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
`;

export const Svg = styled(motion.svg)`
display: block;
Expand Down

0 comments on commit 8bbbc87

Please sign in to comment.