Fix loader sizing

This commit is contained in:
Anton Tananaev 2024-09-14 09:37:36 -07:00
parent 002e5a354f
commit 7b7d5eabc8

View File

@ -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)}}