attempt to fix weird spacing on safari

This commit is contained in:
2026-01-21 14:37:13 -08:00
parent 930868239d
commit fe37e74c4e
2 changed files with 3 additions and 4 deletions

View File

@ -27,7 +27,7 @@ body {
color: var(--color-bg);
display: flex;
flex-direction: column;
font-family: sans-serif;
font-family: Arial, Helvetica, sans-serif;
min-height: 100vh;
}

View File

@ -4,8 +4,8 @@ nav {
margin: 0 auto 1.5rem;
display: grid;
grid-template: "logo nav";
grid-template-rows: 6.75rem;
grid-template-columns: 6.75rem auto;
grid-template-rows: 7rem;
grid-template-columns: 7rem auto;
background-image: url("/assets/img/greenhouse.jpg");
background-size: cover;
background-repeat: no-repeat;
@ -99,7 +99,6 @@ nav ul {
grid-area: nav;
display: flex;
justify-content: space-between;
gap: .6rem;
align-items: flex-end;
flex-flow: column nowrap;
}