mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
25 lines
422 B
Vue
25 lines
422 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(11);
|
|
color: $light_text;
|
|
text-transform: uppercase;
|
|
font-weight: 900;
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
</style>
|