🚧 WIP on darkmode 🌑

This commit is contained in:
Philipp Dormann
2021-07-12 00:26:33 +02:00
parent e568cad22c
commit 673d3c124c
8 changed files with 69 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
<template>
<span class="badge rounded-pill" :class=" 'bg-' + color ">{{ text }}</span>
<span class="badge rounded-pill" :class="'bg-' + color">{{ text }}</span>
</template>
<script>
@@ -33,7 +33,10 @@ export default {
</script>
<style scoped>
span {
width: 45px;
}
span {
width: 45px;
}
.badge {
color: #0a0a0a;
}
</style>