Files
vuefilemanager/resources/js/components/Others/ThemeLabel.vue
2020-04-28 18:06:38 +02:00

25 lines
419 B
Vue

<template>
<b class="theme-label">
<slot></slot>
</b>
</template>
<script>
export default {
name: 'TextLabel',
}
</script>
<style lang="scss" scoped>
@import "@assets/app.scss";
.theme-label {
@include font-size(14);
color: $theme;
text-transform: uppercase;
font-weight: 900;
display: block;
margin-bottom: 5px;
}
</style>