add BaseBadge

This commit is contained in:
Andreas Zweili 2021-06-28 18:06:45 +02:00
parent e98db0c262
commit a184a5c691
1 changed files with 40 additions and 0 deletions

View File

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