Move tag styles

This commit is contained in:
Oliver Davies 2019-03-31 08:48:47 +01:00
parent fa47073ae1
commit b2a6a717bf
2 changed files with 10 additions and 8 deletions

View file

@ -40,13 +40,5 @@ h2 {
}
}
.tag {
@apply text-2xs uppercase py-1 px-2 rounded border border-grey-400 bg-white mr-2 mb-2
}
.tag.is-type {
@apply bg-blue-100 border-blue-100 text-white
}
@tailwind utilities;
</style>

View file

@ -15,3 +15,13 @@ export default {
}
}
</script>
<style scoped>
.tag {
@apply text-2xs py-1 px-2 rounded uppercase border border-grey-400 bg-white mr-2 mb-2
}
.tag[data-type="drupal"] {
@apply bg-blue-100 border-blue-100 text-white
}
</style>