generated from it-at-m/oss-repository-en-template
-
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.
Bug/docs fix theme and cleanup (#332)
* 📝 docs unify gateway naming * 📝 docs architecture client instead of users * 📝 docs make outline deep by default * 📝 docs use asset server for nav logo * 🐛 docs fix missing css * 🐛 docs fix missing css * 📝 docs unify gateway naming * 📝 docs add prettier commands
- Loading branch information
Showing
8 changed files
with
34 additions
and
12 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
Binary file not shown.
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,8 +1,27 @@ | ||
:root { | ||
--muc-logo-filter: invert(0); | ||
--muc-logo-filter: invert(0); /* Sets the default LHM logo color to black */ | ||
} | ||
|
||
/* Dark mode specific configurations */ | ||
.dark { | ||
--muc-logo-filter: invert(1); /* Sets the LHM logo color to white */ | ||
} | ||
|
||
/* Enables footer on all pages instead of only the home page */ | ||
footer.VPFooter { | ||
display: block !important; | ||
z-index: 100 !important; | ||
} | ||
|
||
@media all and (max-width: 450px) { | ||
/* Hides the logo text on mobile phones */ | ||
.VPNav div.logo a { | ||
overflow: hidden; | ||
width: 23px; | ||
} | ||
/* Fixes compression of logo on phone screens */ | ||
.VPNav div.logo a img { | ||
object-fit: cover; | ||
object-position: left; | ||
} | ||
} |
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 +1 @@ | ||
# API-Gateway | ||
# API gateway |
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