moved the footer to a grid instead of flex to fix safari flex gap not working

This commit is contained in:
Jack 2021-04-23 17:30:54 +01:00
parent 99ea7e5ddb
commit da272f9140

View file

@ -1783,15 +1783,19 @@ key {
}
.left {
text-align: left;
display: flex;
display: grid;
grid-auto-flow: column;
width: fit-content;
gap: 1rem;
}
.right {
text-align: right;
display: flex;
display: grid;
grid-auto-flow: column;
width: fit-content;
justify-self: right;
gap: 1rem;
// align-items: center;
justify-content: flex-end;
.current-theme {
transition: 0.25s;
text-decoration: none;