-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#main-content #app header:is(.flex) { | ||
/* Cascade has its own page header, so hide the TaxonPages header. | ||
* Even if we remove the header from the Vue app, a placeholder will be added. */ | ||
display: none; | ||
} | ||
|
||
#main-content #app .h-screen { | ||
/* TaxonPages takes over the screen, but that's not good behavior inside a Cascade page. */ | ||
height: unset; | ||
min-height: 30rem; | ||
} | ||
|
||
#app { | ||
/* Cascade has some opinions about spacing, color, and size that don't work well for TaxonPages. */ | ||
color: black; | ||
h1, h2, h3, h4, h5, h6 { | ||
font-family: United Sans, Impact, sans-serif; | ||
text-transform: unset; | ||
font-size: unset; | ||
color: black; | ||
margin: unset; | ||
line-height: unset; | ||
} | ||
li, p { | ||
font-weight: 400; | ||
} | ||
a { | ||
text-decoration: unset; | ||
} | ||
} |