-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add color mode switcher * Add darkmode to syntax highlighter * yarn build * cleanup + minor fixes * Remove merge leftover --------- Co-authored-by: Alexandre Iooss <erdnaxe@crans.org> Co-authored-by: Kevin Chung <kchung@ctfd.io>
- Loading branch information
1 parent
dfc0d1c
commit 77f664b
Showing
7 changed files
with
42 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
.min-vh-0 { | ||
min-height: 0vh !important; | ||
min-height: 0 !important; | ||
} | ||
|
||
.min-vh-25 { | ||
min-height: 25vh !important; | ||
} | ||
|
||
.min-vh-50 { | ||
min-height: 50vh !important; | ||
} | ||
|
||
.min-vh-75 { | ||
min-height: 75vh !important; | ||
} | ||
|
||
.min-vh-100 { | ||
min-height: 100vh !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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
.opacity-0 { | ||
opacity: 0 !important; | ||
} | ||
|
||
.opacity-25 { | ||
opacity: 0.25 !important; | ||
} | ||
|
||
.opacity-50 { | ||
opacity: 0.5 !important; | ||
} | ||
|
||
.opacity-75 { | ||
opacity: 0.75 !important; | ||
} | ||
|
||
.opacity-100 { | ||
opacity: 1 !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