This commit is contained in:
rca 2024-07-22 02:46:51 +09:00
parent 57525fdfe4
commit 61956f150f
3 changed files with 14 additions and 1 deletions

View File

@ -78,6 +78,6 @@ onMounted(() => {
</script> </script>
<style scoped> <style lang="scss" scoped>
</style> </style>

View File

@ -1 +1,7 @@
// app global css in SCSS form // app global css in SCSS form
// Text
body {
color: $text-color;
background-color: $color-light-gray;
}

View File

@ -62,3 +62,10 @@ defineOptions({
}); });
</script> </script>
<style lang="scss">
.q-toolbar {
background-color: darken($primary, 30%);
}
</style>