Skip to content
7 changes: 7 additions & 0 deletions src/components/chart/chart.styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,3 +208,10 @@ export const starNameIcon = css`
export const voteStyle = css`
color: var(--white);
`;

export const emptyState = css`
padding: 2rem;
font-size: 1rem;
text-align: center;
color: #999;
`;
1 change: 0 additions & 1 deletion src/components/starFrame/StarFrame.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ const StarFrame = ({ imageUrls = [], interval = 3000 }) => {
duration: 1.5, // 1.5์ดˆ ๋™์•ˆ fade-in
ease: 'easeOut', // ๋๋‚  ๋•Œ ์ž์—ฐ์Šค๋Ÿฝ๊ฒŒ
}}
css={S.image} // ํ•„์š”ํ•˜๋ฉด ์Šคํƒ€์ผ ์ ์šฉ
/>
)}
<div css={S.frame} />
Expand Down
1 change: 1 addition & 0 deletions src/components/starFrame/starFrame.styles.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { css } from '@emotion/react';
import frameImage from '@/assets/images/handle-frame.png';

export const wrapper = css`
position: relative;
padding-top: 1rem;
Expand Down
12 changes: 5 additions & 7 deletions src/pages/landing/LandingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,11 @@ const LandingPage = () => {
)}

{idx === sections.length - 1 ? (
<div css={S.buttonWrapper}>
<Link to="/list" onClick={handleClearStorage}>
<CustomButton type="button" variant="landing">
{section.buttonText}
</CustomButton>
</Link>
</div>
<Link to="/list" onClick={handleClearStorage}>
<CustomButton type="button" variant="landing">
{section.buttonText}
</CustomButton>
</Link>
) : null}
{section.showScrollGuide && (
<button
Expand Down