-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new style to highlight important UI elements.
Move common styles to CSS file rather than root app component.
- Loading branch information
Showing
6 changed files
with
27 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
body, | ||
#__nuxt { | ||
min-height: 100vh; | ||
} | ||
|
||
body { | ||
@apply text-gray-800 dark:text-gray-300 dark:bg-[#091a28]; | ||
} | ||
|
||
/* accentuate important UI components */ | ||
.accent { | ||
@apply text-slate-800 bg-blue-200 dark:text-slate-100 dark:bg-sky-700; | ||
} | ||
|
||
input { | ||
@apply placeholder-gray-600 dark:placeholder-gray-400; | ||
} | ||
|
||
/* highlight active router links */ | ||
.router-link-exact-active { | ||
@apply text-orange-600 dark:text-yellow-300; | ||
} |
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