-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab036b3
commit bd6577b
Showing
36 changed files
with
152 additions
and
131 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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
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
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
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
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,9 +1,44 @@ | ||
/* Theming API*/ | ||
gcds-header { | ||
--gcds-header-margin: 0; | ||
--gcds-nav-link-top-nav-padding: theme("spacing.5") | ||
theme("spacing.gutterHalf") theme("spacing.5") 0; | ||
} | ||
gcds-nav-group { | ||
--gcds-nav-group-trigger-focus-background: theme("colors.yellow.DEFAULT"); | ||
--gcds-nav-group-trigger-focus-text: theme("colors.black"); | ||
--gcds-nav-group-trigger-focus-border-radius: 0; | ||
--gcds-nav-group-trigger-focus-outline: 3px solid | ||
theme("colors.yellow.300"); | ||
} | ||
|
||
gcds-nav-link { | ||
--gcds-nav-link-focus-background: theme("colors.yellow.DEFAULT"); | ||
--gcds-nav-link-focus-text: theme("colors.black"); | ||
--gcds-nav-link-focus-border-radius: 0; | ||
--gcds-nav-link-focus-outline: 3px solid | ||
theme("colors.yellow.300"); | ||
} | ||
|
||
nav#account gcds-nav-group[open] { | ||
@apply bg-white border-1 border-t-0 border-gray-300; | ||
gcds-footer, | ||
gcds-header, | ||
gcds-link { | ||
--gcds-link-focus-background: theme("colors.yellow.DEFAULT"); | ||
--gcds-link-focus-text: theme("colors.black"); | ||
--gcds-link-focus-border-radius: 0; | ||
--gcds-link-focus-outline-width: 0; | ||
--gcds-link-focus-box-shadow: 0 0 0 2px white, 0 0 0 5px theme('colors.yellow.300'); | ||
} | ||
|
||
|
||
/* Interfacing with Notify */ | ||
[slot=search] gcds-nav-group[open] { | ||
@apply bg-white border border-gray-300; | ||
} | ||
[slot=search] gcds-nav-group { | ||
@apply border border-transparent; | ||
} | ||
|
||
|
||
/* Recipe to set fluid width on containers, as does GCDS */ | ||
.container.max-w-screen-xl { | ||
width: 90%; | ||
} |
Oops, something went wrong.