aboutsummaryrefslogtreecommitdiff
path: root/src/components/panel_loading
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2024-03-04 19:45:42 +0200
committerHenry Jameson <me@hjkos.com>2024-03-04 19:45:42 +0200
commit075f2cb903fa45ea8e7a52098fd7091b0b14a9fd (patch)
tree3590676bc07d2d7798e35746ed944da087dfc05e /src/components/panel_loading
parent50a9c077fbf6d403caa4c383e5502eeda47f2ef8 (diff)
remove all "fallback variables"
Diffstat (limited to 'src/components/panel_loading')
-rw-r--r--src/components/panel_loading/panel_loading.vue8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/components/panel_loading/panel_loading.vue b/src/components/panel_loading/panel_loading.vue
index 17458e49..7a832122 100644
--- a/src/components/panel_loading/panel_loading.vue
+++ b/src/components/panel_loading/panel_loading.vue
@@ -23,22 +23,18 @@ export default {}
</script>
<style lang="scss">
-@import "src/variables";
-
.panel-loading {
display: flex;
height: 100%;
align-items: center;
justify-content: center;
font-size: 2em;
- color: $fallback--text;
- color: var(--text, $fallback--text);
+ color: var(--text);
.loading-text svg {
line-height: 0;
vertical-align: middle;
- color: $fallback--text;
- color: var(--text, $fallback--text);
+ color: var(--text);
}
}
</style>