-
Notifications
You must be signed in to change notification settings - Fork 538
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PostCSS color var fallback for upcoming CSS work (#3278)
* add fallback plugin * Update rollup.config.js Co-authored-by: Josh Black <joshblack@github.com> * remove fallbacks from source * add back conflict free package-lock * use lockfileVersion 3 --------- Co-authored-by: Josh Black <joshblack@github.com> Co-authored-by: Siddharth Kshetrapal <siddharthkp@github.com>
- Loading branch information
1 parent
e865e3e
commit 60ebd51
Showing
4 changed files
with
68 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.component { | ||
background-color: var(--bgColor-default, var(--color-canvas-default)); | ||
color: var(--fgColor-muted, var(--color-fg-muted)); | ||
border: 1px solid var(--borderColor-default, var(--color-border-default)); | ||
background-color: var(--bgColor-default); | ||
color: var(--fgColor-muted); | ||
border: 1px solid var(--borderColor-default); | ||
width: fit-content; | ||
padding: var(--control-xsmall-paddingBlock) var(--control-xsmall-paddingInline-normal); | ||
} |