mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 08:32:14 +00:00
User Authentication - Login to user account - Register new user account - Reset user password Functionality - Added locations to menu - Added trash for deleted folders & files - Restore files or folders from trash - Empty trash function - Favourites folders - List of 5 latest uploads - Profile settings page - Storage info and upload limits Design - Night Mode - Navigation sidebar - Quick action buttons in mobile version - Improved mobile UX - Other small design improvements Settings - Enable/Disable user account registration - Set storage limitation - Set storage capacity for all users
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(10);
|
|
color: $light_text;
|
|
text-transform: uppercase;
|
|
font-weight: 900;
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
</style>
|