-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: Enable dark mode and other CSS changes * docs: Fix underline LatestUpdates component * docs: dark mode v2 * docs: Fix Dark Mode Docsearch * docs: update announcementBar and thumbnail
- Loading branch information
1 parent
9c63a27
commit 7bccc3a
Showing
65 changed files
with
702 additions
and
651 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
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,76 +1,87 @@ | ||
/* Cards with icons */ | ||
.homeGrid > * { | ||
@apply relative m-0 border; | ||
border-radius: var(--ifm-pagination-nav-border-radius);; | ||
@apply relative m-0 border border-border; | ||
border-radius: var(--ifm-pagination-nav-border-radius); | ||
} | ||
|
||
.homeGrid a { | ||
@apply block; | ||
color: var(--ifm-font-color-base); | ||
padding: var(--ifm-spacing-vertical) var(--ifm-spacing-horizontal); | ||
padding-left: 98px; | ||
} | ||
|
||
.homeGrid a:active, | ||
.homeGrid a:hover { | ||
@apply no-underline; | ||
} | ||
|
||
.homeGrid a:active strong, | ||
.homeGrid a:hover strong { | ||
@apply no-underline text-rebelPink; | ||
} | ||
|
||
.homeGrid a img, | ||
.homeGrid a svg { | ||
@apply absolute border-0 bg-transparent rounded-none top-5 left-6 h-12 w-12; | ||
box-shadow: none; | ||
} | ||
|
||
.cardGrid a strong, | ||
.homeGrid a strong { | ||
@apply block mb-2; | ||
color: var(--ifm-color-label); | ||
} | ||
|
||
/* Plain cards without icons */ | ||
.cardGrid > * { | ||
margin: 0; | ||
position: relative; | ||
} | ||
|
||
.cardGrid a { | ||
color: inherit; | ||
display: block; | ||
padding: 30px 30px; | ||
@apply border-border rounded border; | ||
} | ||
|
||
.cardGrid a:active, | ||
.cardGrid a:hover { | ||
@apply no-underline; | ||
} | ||
|
||
.cardGrid a:active strong, | ||
.cardGrid a:hover strong{ | ||
@apply text-rebelPink; | ||
} | ||
|
||
.cardGrid a strong { | ||
@apply block mb-2; | ||
} | ||
|
||
/* Make grids responsive*/ | ||
@media only screen and (min-width: 1240px) { | ||
.cardGrid, | ||
.homeGrid { | ||
@apply grid; | ||
grid-template-columns: 1fr 1fr; | ||
gap: var(--ifm-spacing-vertical) var(--ifm-spacing-horizontal); | ||
} | ||
|
||
.homeGrid a { | ||
@apply block text-text; | ||
padding: var(--ifm-spacing-vertical) var(--ifm-spacing-horizontal); | ||
padding-left: 98px; | ||
} | ||
|
||
.homeGrid > *:active, | ||
.homeGrid > *:hover { | ||
@apply border-secondary | ||
} | ||
.homeGrid a:active, | ||
.homeGrid a:hover { | ||
@apply no-underline; | ||
} | ||
|
||
.homeGrid a img { | ||
@apply absolute border-0 bg-transparent rounded-none top-5 left-6 h-12 w-12; | ||
box-shadow: none; | ||
} | ||
|
||
.cardGrid a strong, | ||
.homeGrid a strong { | ||
@apply block mb-2; | ||
color: var(--ifm-color-label); | ||
} | ||
|
||
/* Plain cards without icons */ | ||
.cardGrid > * { | ||
@apply m-0 border rounded-md; | ||
} | ||
.cardGrid a { | ||
@apply block; | ||
color: inherit; | ||
padding: var(--ifm-spacing-vertical) var(--ifm-spacing-horizontal); | ||
} | ||
|
||
.cardGrid > *:active, | ||
.cardGrid > *:hover { | ||
@apply border; | ||
} | ||
|
||
.cardGrid a:active, | ||
.cardGrid a:hover { | ||
@apply no-underline; | ||
} | ||
|
||
/* Make grids responsive*/ | ||
@media only screen and (min-width: 1240px) { | ||
.cardGrid, | ||
.homeGrid { | ||
@apply grid; | ||
grid-template-columns: 1fr 1fr; | ||
gap: var(--ifm-spacing-vertical) var(--ifm-spacing-horizontal); | ||
} | ||
} | ||
|
||
/* Add spacing between grids and sections */ | ||
h2 + .cardGrid, | ||
h2 + .homeGrid { | ||
margin-top: var(--ifm-spacing-vertical); | ||
} | ||
|
||
.cardGrid + h2, | ||
.homeGrid + h2 { | ||
@apply pt-5; | ||
} | ||
|
||
.homeGrid > p { | ||
margin-top: var(--ifm-spacing-vertical) !important; | ||
} | ||
} | ||
|
||
/* Add spacing between grids and sections */ | ||
h2 + .cardGrid, | ||
h2 + .homeGrid { | ||
margin-top: var(--ifm-spacing-vertical); | ||
} | ||
|
||
.cardGrid + h2, | ||
.homeGrid + h2 { | ||
@apply pt-5; | ||
} | ||
|
||
.cardGrid > p, | ||
.homeGrid > p { | ||
margin-top: var(--ifm-spacing-vertical) !important; | ||
} |
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
Oops, something went wrong.
7bccc3a
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.
Successfully deployed to the following URLs:
faststore – ./
faststore-docs.vercel.app
faststore-git-master-faststore-docs.vercel.app
faststore-faststore-docs.vercel.app