-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: update button-link with new pattern #70
Conversation
eef91cf
to
663348f
Compare
7d434a2
to
c0225c2
Compare
c0225c2
to
8955d8d
Compare
@@ -109,7 +26,7 @@ class ButtonLink extends HTMLElement { | |||
|
|||
if (this.hasAttribute("variant")) { | |||
const variant = this.getAttribute("variant"); | |||
const validVariants = ["ghost", "secondary"]; | |||
const validVariants = ["ghost", "primary"]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
variant 이름이 왜 자꾸 바뀌는 거에요? ㅋ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
처음에 이 색이 회색이길래 primary인 줄 모르고 secondary로 지었다가, global variable에 아예 primary, secondary가 생겨서 이렇게 바꾸게 되었습니다...ㅋㅋ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다~!
Checklist before merging