Style fixes

This commit is contained in:
2023-06-19 00:41:57 +03:00
parent 9adcd2ab62
commit e88bdf2b92
11 changed files with 196 additions and 50 deletions

View File

@@ -0,0 +1,42 @@
<template>
<div class="bar">
<div
class="fill"
/>
</div>
</template>
<script setup>
</script>
<style scoped lang="scss">
.bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 16px;
}
.fill {
position: fixed;
left: 0;
right: 0;
width: 100%;
height: 16px;
background: white;
animation: move 5s linear;
}
@keyframes move {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
}
</style>