Initial commit

This commit is contained in:
MakingCG
2020-03-10 19:00:32 +01:00
commit 3285a7e1c2
165 changed files with 31472 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
<template>
<div class="progress-bar">
<span :style="{ width: progress + '%' }"></span>
</div>
</template>
<script>
export default {
name: 'ProgressBar',
props: ['progress']
}
</script>
<style scoped lang="scss">
@import "@assets/app.scss";
.progress-bar {
width: 100%;
height: 5px;
background: $dark_background;
margin-top: 5px;
border-radius: 10px;
span {
background: $theme;
display: block;
height: 100%;
border-radius: 10px;
max-width: 100%;
}
}
@media (prefers-color-scheme: dark) {
.progress-bar {
background: $dark_mode_foreground;
}
}
@media only screen and (min-width: 680px) and (prefers-color-scheme: dark) {
.progress-bar {
background: $dark_mode_background;
}
}
</style>