diff --git a/src/components/HeaderHome.module.scss b/src/components/HeaderHome.module.scss index 5a6d4870..59887628 100644 --- a/src/components/HeaderHome.module.scss +++ b/src/components/HeaderHome.module.scss @@ -5,9 +5,7 @@ background: $brand-black; width: 100%; padding: $spacer * 2 0; - min-height: 30rem; - max-height: 800px; color: $brand-white; text-align: center; display: flex; diff --git a/src/styles/global.scss b/src/styles/global.scss index ac85f614..b77875d8 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -61,6 +61,7 @@ ul { li { &::before { content: ' \25AA'; // Black Small Square: ▪ ▪ + top: -2px; } } } @@ -73,6 +74,7 @@ ol { content: counter(ol-counter) '.'; counter-increment: ol-counter; font-family: $font-family-button; + top: -1px; } } @@ -95,7 +97,6 @@ ol { &::before { position: absolute; left: -($spacer / $line-height); - top: -1px; color: $brand-grey-light; user-select: none; } @@ -217,11 +218,6 @@ table { margin: 0; padding: $spacer / 2; border-bottom: 1px solid $brand-grey-lighter; - } - - th { - font-family: $font-family-button; - font-weight: 600; text-align: left; &[align="center"] { @@ -233,8 +229,9 @@ table { } } - td { - + th { + font-family: $font-family-button; + font-weight: 600; } } @@ -245,10 +242,11 @@ code, kbd, pre, samp { - font-family: $font-family-monospace; - font-size: $font-size-small; + // lots of !important to overwrite prims.js theme + font-family: $font-family-monospace !important; + font-size: $font-size-small !important; background: $brand-black !important; - color: $brand-grey-lighter !important; + color: $brand-white !important; border-radius: $border-radius !important; }