-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove errant components layer use, simplify story component i…
…mports
- Loading branch information
1 parent
6d18fc2
commit e0dbaa1
Showing
3 changed files
with
25 additions
and
27 deletions.
There are no files selected for viewing
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,28 +1,26 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap"); | ||
|
||
@layer components { | ||
.pi-checkered-bg { | ||
--size: 0.25rem; | ||
--double: calc(var(--size) * 2); | ||
--bg: #eee; | ||
--fg: #ddd; | ||
background: linear-gradient( | ||
45deg, | ||
var(--fg) 25%, | ||
transparent 25.1%, | ||
transparent 74.9%, | ||
var(--fg) 75% | ||
), | ||
linear-gradient( | ||
45deg, | ||
var(--fg) 25%, | ||
transparent 25.1%, | ||
transparent 74.9%, | ||
var(--fg) 75% | ||
), | ||
var(--bg); | ||
background-repeat: repeat, repeat; | ||
background-position: 0 0, var(--size) var(--size); | ||
background-size: var(--double) var(--double), var(--double) var(--double); | ||
} | ||
.pi-checkered-bg { | ||
--size: 0.25rem; | ||
--double: calc(var(--size) * 2); | ||
--bg: #eee; | ||
--fg: #ddd; | ||
background: linear-gradient( | ||
45deg, | ||
var(--fg) 25%, | ||
transparent 25.1%, | ||
transparent 74.9%, | ||
var(--fg) 75% | ||
), | ||
linear-gradient( | ||
45deg, | ||
var(--fg) 25%, | ||
transparent 25.1%, | ||
transparent 74.9%, | ||
var(--fg) 75% | ||
), | ||
var(--bg); | ||
background-repeat: repeat, repeat; | ||
background-position: 0 0, var(--size) var(--size); | ||
background-size: var(--double) var(--double), var(--double) var(--double); | ||
} |
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