diff --git a/client/src/components/instruments/FilterEntry.vue b/client/src/components/instruments/FilterEntry.vue
index 1b058eaf..285fb13e 100644
--- a/client/src/components/instruments/FilterEntry.vue
+++ b/client/src/components/instruments/FilterEntry.vue
@@ -1,22 +1,41 @@
-
- {{ text }}
+
+ {{ text }}
+
@@ -31,11 +50,24 @@
&__text {
@include sub-heading;
line-height: 1.5;
+ color: inherit;
}
&__icon {
width: 10px;
height: 10px;
}
+
+ &--language-communication {
+ color: $color-accent-2-dark;
+ }
+
+ &--society {
+ color: $color-accent-1-dark;
+ }
+
+ &--interdisciplinary {
+ color: $color-accent-4-dark;
+ }
}
diff --git a/client/src/components/instruments/FilterGroup.vue b/client/src/components/instruments/FilterGroup.vue
index a4ff330e..7250b051 100644
--- a/client/src/components/instruments/FilterGroup.vue
+++ b/client/src/components/instruments/FilterGroup.vue
@@ -3,6 +3,7 @@
@@ -30,6 +31,10 @@
type: Array,
default: () => [],
},
+ type: {
+ type: String,
+ default: ''
+ }
},
components: {FilterEntry, ChevronRight},
inheritAttrs: false,
@@ -40,7 +45,7 @@
@import '~styles/helpers';
.filter-group {
- border-bottom: 1px solid black;
+ border-bottom: 1px solid $color-silver;
display: flex;
flex-direction: column;
diff --git a/client/src/components/instruments/InstrumentFilter.vue b/client/src/components/instruments/InstrumentFilter.vue
index 514b9c46..49e346e6 100644
--- a/client/src/components/instruments/InstrumentFilter.vue
+++ b/client/src/components/instruments/InstrumentFilter.vue
@@ -7,14 +7,17 @@
i.type.category===LANGUAGE_COMMUNICATION)"
/>
diff --git a/client/src/pages/instrumentOverview.vue b/client/src/pages/instrumentOverview.vue
index b92efc2f..cd4928ed 100644
--- a/client/src/pages/instrumentOverview.vue
+++ b/client/src/pages/instrumentOverview.vue
@@ -64,7 +64,9 @@
display: grid;
//grid-template-rows: auto auto 1fr;
grid-template-columns: 300px auto;
+ grid-column-gap: $small-spacing;
//@include centered(800px);
+ padding: 0 $small-spacing;
&__filter {
@@ -76,6 +78,7 @@
width: 100%;
display: flex;
flex-direction: column;
+ justify-self: center;
}
&__list-item {