diff --git a/arches_lingo/src/arches_lingo/components/scheme/SchemeCard.vue b/arches_lingo/src/arches_lingo/components/scheme/SchemeCard.vue index c365617d..a221702b 100644 --- a/arches_lingo/src/arches_lingo/components/scheme/SchemeCard.vue +++ b/arches_lingo/src/arches_lingo/components/scheme/SchemeCard.vue @@ -23,7 +23,7 @@ const [schemeName, schemeDescription] = getDescriptors( diff --git a/arches_lingo/src/arches_lingo/pages/SchemeList.vue b/arches_lingo/src/arches_lingo/pages/SchemeList.vue index c81b74d5..b5c38ace 100644 --- a/arches_lingo/src/arches_lingo/pages/SchemeList.vue +++ b/arches_lingo/src/arches_lingo/pages/SchemeList.vue @@ -24,10 +24,7 @@ onMounted(async () => { " > -
  • +
  • Placeholder for creating new scheme
  • @@ -48,10 +45,16 @@ onMounted(async () => { margin: 0.5rem; padding: 1rem; border: 0.0625rem solid var(--p-menubar-border-color); - min-width: 300px; - display: flex; - flex-direction: column; - justify-content: space-between; background-color: var(--p-primary-400); + width: 15rem; + height: 15rem; + display: flex; +} +.scheme-card:hover { + background-color: var(--p-button-primary-hover-background); + cursor: pointer; +} +.new-scheme-card { + text-align: center; }