Navbar is now positioned above everything else.

Previously, icons would be positioned above the header if
`translate()` was used
This commit is contained in:
Jacob 2023-07-01 18:37:20 +02:00
parent 6dfc93363d
commit b37c9162fa
2 changed files with 6 additions and 3 deletions

View file

@ -4,8 +4,10 @@
padding: 5px;
margin: 0px;
position: sticky;
top: 0;
align-items:center;
top: 0px;
align-items: center;
z-index: 6;
width: 100%;
}
.warning {

View file

@ -28,5 +28,6 @@ a:hover {
}
.links img {
transform: translate(0, +20%)
transform: translate(0, +20%);
display: inline;
}