Skip to content

Commit

Permalink
design : ๐Ÿ’„ ๊ฒน์น˜๋Š” ์Šคํƒ€์ผ ์žฌ์‚ฌ์šฉ
Browse files Browse the repository at this point in the history
  • Loading branch information
binllionaire committed Nov 17, 2023
1 parent c8cfe65 commit f0de0f8
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { styled } from "styled-components";
const centerFlex = `
display: flex;
justify-content: center;
align-items: center;
`;

export const Section = styled.section`
display: flex;
justify-content: center;
Expand All @@ -23,9 +29,7 @@ export const Answer = styled.div`
`;
export const Balloon = styled.div`
position: relative;
display: flex;
justify-content: center;
align-items: center;
${centerFlex}
margin: 20px;
padding: 10px;
Expand Down Expand Up @@ -67,9 +71,7 @@ export const BalloonText = styled.p`
export const WhiteBox = styled.div`
position: relative;
display: flex;
justify-content: center;
align-items: center;
${centerFlex}
margin: 20px;
padding: 10px;
Expand Down Expand Up @@ -101,9 +103,7 @@ export const Button = styled.button`
export const RadioBalloon = styled.label`
position: relative;
display: flex;
justify-content: center;
align-items: center;
${centerFlex}
width: 200px;
height: 150px;
Expand Down

0 comments on commit f0de0f8

Please sign in to comment.