Skip to content

Commit

Permalink
Fix loader sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
tananaev committed Sep 14, 2024
1 parent 002e5a3 commit 7b7d5ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<style>
.loader {
position: fixed; top: calc(50% - 25px); left: calc(50% - 25px);
width: 50px; aspect-ratio: 1; animation: ll 1s infinite linear;
width: 50px; aspect-ratio: 1; box-sizing: content-box; animation: ll 1s infinite linear;
border-radius: 50%; border: 8px solid lightgray; border-right-color: black;
}
@keyframes ll {to{transform: rotate(1turn)}}
Expand Down

0 comments on commit 7b7d5ea

Please sign in to comment.