diff --git a/src/components/Application/ApplicationTags.vue b/src/components/Application/ApplicationTags.vue
index 1fc1197..c434fca 100644
--- a/src/components/Application/ApplicationTags.vue
+++ b/src/components/Application/ApplicationTags.vue
@@ -1,8 +1,8 @@
-
- - {{ application.level }}
+
+ - {{ application.level }}
@@ -16,21 +16,15 @@ export default {
computed: {
applicationTypeName () {
return this.$attrs.types[this.application.type].name
+ },
+
+ typeClasses() {
+ return {
+ '': 'bg-white border-gray-400',
+ drupal: 'bg-blue-100 border-blue-100 text-white',
+ nodejs: 'bg-green border-green text-white'
+ }[this.application.type]
}
}
}
-
-
diff --git a/src/components/Environment/ActionCards.vue b/src/components/Environment/ActionCards.vue
index 9fedfae..aa07eb2 100644
--- a/src/components/Environment/ActionCards.vue
+++ b/src/components/Environment/ActionCards.vue
@@ -7,18 +7,18 @@