diff --git a/src/vue/components/Card.vue b/src/vue/components/Card.vue index bf508da6..9bf32d77 100644 --- a/src/vue/components/Card.vue +++ b/src/vue/components/Card.vue @@ -18,6 +18,13 @@

+ + +

+ + +
@@ -36,6 +43,7 @@ export default { theme: String, courseIllustration: String, label: String, + filters: Array }, data() { return { @@ -52,7 +60,6 @@ export default { .card-highlighted-box { position: relative; width: 24rem; - min-height: 24rem; display: flex; flex-direction: column; justify-content: space-evenly; @@ -121,6 +128,29 @@ export default { justify-content: flex-start; } + .card-highlighted-content-tags { + display: flex; + flex-direction: row; + justify-content: flex-start; + flex-wrap: wrap; + list-style-type: none; + padding: 0px; + margin: 0px; + margin-top: 10px; + } + + .card-highlighted-content-tags li { + background: #eaeaf5; + padding: 4px 15px; + margin: 0px; + margin-right: 8px; + margin-bottom: 8px; + border-radius: 20px; + font-size: 14px; + font-weight: 400; + line-height: 21px; + } + .card-highlighted-content-button-container { margin-top: 1.5rem; margin-bottom: 1rem; diff --git a/src/vue/components/CardList.vue b/src/vue/components/CardList.vue index 7935ec6b..8da61035 100644 --- a/src/vue/components/CardList.vue +++ b/src/vue/components/CardList.vue @@ -1,11 +1,12 @@