-
Notifications
You must be signed in to change notification settings - Fork 26
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
docs(drawer): implement and document attrs and vars #794
Conversation
Deploy preview for helix-ui ready! Built with commit a2d2ca4 |
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.
DEV LGTM
@@ -39,7 +39,7 @@ hx-drawer { | |||
} | |||
|
|||
> hx-div { | |||
background-color: $gray-0; | |||
background-color: var(--hxDrawer-hxDiv-bgcolor, $gray-0); | |||
border-top: 1px solid $gray-400; |
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.
Please change to:
border-top: 1px solid var(--hxDrawer-hxdiv-border-top, $gray-400);
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.
Changes have been done, please review.
@@ -48,7 +48,7 @@ hx-drawer { | |||
} | |||
|
|||
> footer { | |||
background-color: $gray-0; | |||
background-color: var(--hxDrawer-footer-bgcolor, $gray-0); | |||
border-top: 1px solid $gray-400; |
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.
Please change to:
border-top: 1px solid var(--hxDrawer-footer-border-top, $gray-400);
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.
Changes have been done, please review.
@@ -39,7 +39,7 @@ hx-drawer { | |||
} | |||
|
|||
> hx-div { | |||
background-color: $gray-0; | |||
background-color: var(--hxDrawer-hxDiv-bgcolor, $gray-0); |
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.
Please change to:
background-color: var(--hxDrawer-hxdiv-bgcolor, $gray-0);
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.
Changes have been done, please review.
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.
Dev LGTM
Description
hx-drawer
: Implement and document attributes and variablesWhat are the relevant story cards/tickets? Any additional PRs or other references?
Jira: SURF 2104
Before you request a review for this PR:
yarn test
to ensure all tests passed?