Fix a couple things that are broken in Chrome

This commit is contained in:
Eryn Wells 2022-10-09 13:46:08 -07:00
parent dca0f2e7e5
commit 8be36386a9
2 changed files with 3 additions and 2 deletions

View file

@ -29,7 +29,7 @@ main .grid {
align-items: baseline; align-items: baseline;
display: grid; display: grid;
gap: 0 2rem; gap: 0 2rem;
grid-template-columns: min-content fit-content(35%); grid-template-columns: min-content 200px;
grid-template-rows: repeat(2, max-content); grid-template-rows: repeat(2, max-content);
grid-template-areas: grid-template-areas:
"title blurb" "title blurb"

View file

@ -16,7 +16,7 @@
--background-color: rgb(var(--white)); --background-color: rgb(var(--white));
--foreground-body-color: rgba(var(--black), 0.8); --foreground-body-color: rgba(var(--black), 0.8);
--foreground-header-color: rgb(var(--black)); --foreground-header-color: rgb(var(--black));
--site-nav-link-color: rgb(var(--lt-blue)); --site-nav-link-color: rgb(var(--mid-blue));
--separator-color: rgb(var(--lt-gray)); --separator-color: rgb(var(--lt-gray));
--header-border-color: var(--separator-color); --header-border-color: var(--separator-color);
@ -234,6 +234,7 @@ h1.site {
} }
h1.site * { color: inherit; } h1.site * { color: inherit; }
h1.site a:hover { text-decoration: none; }
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
font-weight: 600; font-weight: 600;