This repository has been archived on 2021-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
find_coach/src/components/ui/BaseBadge.vue

41 lines
576 B
Vue

<template>
<span class="badge" :class="type">{{ text }}</span>
</template>
<script>
export default {
props: ['type', 'title'],
computed: {
text() {
return this.title.toUpperCase();
}
}
};
</script>
<style scoped>
.badge {
background-color: #ccc;
color: #252525;
border-radius: 30px;
padding: 0.5rem 1.5rem;
display: inline-block;
margin-right: 0.5rem;
}
.frontend {
background-color: #3d008d;
color: white;
}
.backend {
background-color: #71008d;
color: white;
}
.career {
background-color: #8d006e;
color: white;
}
</style>