mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-08 23:56:27 +08:00
moved the footer to a grid instead of flex to fix safari flex gap not working
This commit is contained in:
parent
99ea7e5ddb
commit
da272f9140
1 changed files with 7 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue