Skip to content

Instantly share code, notes, and snippets.

@Ah-ae
Last active April 6, 2023 08:37
Show Gist options
  • Save Ah-ae/8abd5eeceab0e4100ca7cb886989502c to your computer and use it in GitHub Desktop.
Save Ah-ae/8abd5eeceab0e4100ca7cb886989502c to your computer and use it in GitHub Desktop.
export const S_Button = styled.button`
// 가장 기본적인 파란색 버튼입니다. 화면 가로너비 전체를 차지합니다.
width: 100%;
height: 50px;
padding: 10px 12px;
border-radius: 5px;
color: var(--white);
font-size: 1rem;
background-color: var(--blue300);
:hover {
background-color: var(--blue200);
}
`
export const S_ButtonGray = styled(S_Button)`
// 가장 기본적인 회색 버튼입니다. 화면 가로너비 전체를 차지합니다.
color: var(--gray600);
background-color: var(--gray100);
:hover {
background-color: var(--gray200);
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment