Make fixed position header

This commit is contained in:
Mike Conrad
2024-10-21 12:48:47 -04:00
parent 2a734d4b8c
commit 0cfc93a3ac

View File

@ -27,6 +27,11 @@ header {
display: flex;
justify-content: flex-end;
background-color: #1E3E62;
position: sticky;
position: -webkit-sticky;
top: 0;
left: 0;
right: 0;
}
header nav {