-
Notifications
You must be signed in to change notification settings - Fork 21
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: outline design components must have transparent background #1478
feat: outline design components must have transparent background #1478
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1478 +/- ##
=======================================
Coverage 97.85% 97.85%
=======================================
Files 618 618
Lines 4247 4247
Branches 1593 1593
=======================================
Hits 4156 4156
Misses 91 91
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
@@ -7,7 +7,7 @@ export const triggerVariants = cva( | |||
'relative flex flex-none items-center', | |||
'border-outline', | |||
'outline-none', | |||
'bg-surface hover:bg-surface-hovered', |
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.
❤️
@@ -20,7 +20,7 @@ export const tagStyles = cva( | |||
*/ | |||
design: makeVariants<'design', ['filled', 'outlined', 'tinted']>({ | |||
filled: [], | |||
outlined: ['bg-surface', 'ring-1', 'ring-current'], | |||
outlined: ['bg-transparent', 'ring-1', 'ring-current'], |
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.
❤️
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.
is not possible to simply remove the bg-[color] class?
88e3381
to
d2f4c97
Compare
Apply a transparent bg for outlined variant
Apply no background color by default #1423
d2f4c97
to
ba0363d
Compare
TASK: #1423
Description, Motivation and Context
Types of changes