-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#83] Fix website UI formatting Added a temporary fix of the .card CSS Docsy class. Must be removed when the new release of Docsy including this fix is available and the website is migrated. Signed-off-by: Daniel Milchev <[email protected]>
- Loading branch information
1 parent
71de0a8
commit ea010bf
Showing
3 changed files
with
10 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ | |
@import "images"; | ||
@import "links"; | ||
@import "logo"; | ||
@import "screen"; | ||
@import "screen"; | ||
@import "shortcodes"; |
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 @@ | ||
@import "shortcodes/cards-pane.scss"; |
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,7 @@ | ||
// This is a temporary workaround, which has to be removed after the project is migrated to a released version of docsy that contains the fix itself: https://github.com/google/docsy/pull/1157 | ||
.card { | ||
@extend .td-max-width-on-larger-screens; | ||
.highlight { | ||
border: none; | ||
} | ||
} |