Initial commit

This commit is contained in:
MakingCG
2020-03-10 19:00:32 +01:00
commit 3285a7e1c2
165 changed files with 31472 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<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>