mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
31 lines
554 B
Vue
31 lines
554 B
Vue
<template>
|
|
<b class="text-label">
|
|
<slot></slot>
|
|
</b>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'TextLabel',
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "@assets/app.scss";
|
|
|
|
.text-label {
|
|
@include font-size(10);
|
|
color: $theme;
|
|
text-transform: uppercase;
|
|
font-weight: 900;
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.text-label {
|
|
color: rgba($dark_mode_text_secondary, .4);
|
|
}
|
|
}
|
|
</style>
|