From 617a22ba5c991e03a8af3bc1df42f5415c088900 Mon Sep 17 00:00:00 2001 From: Luke Glasscock <luke.glasscock@ascellatech.com> Date: Thu, 7 Jan 2021 12:14:14 -0700 Subject: [PATCH] Add CNAP card fix --- src/components/Base/LogoCard.vue | 5 ++++- src/components/ServicesSummary.vue | 2 +- src/views/CNAP.vue | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/Base/LogoCard.vue b/src/components/Base/LogoCard.vue index cba8e989..1e877ecc 100644 --- a/src/components/Base/LogoCard.vue +++ b/src/components/Base/LogoCard.vue @@ -12,7 +12,10 @@ :width="logoMaxWidth || 125" /> <div v-if="svgComponent" style="width:100%" class="mx-auto ma-1"> - <component v-bind:is="svgComponent" style="max-width: 125px;" /> + <component + v-bind:is="svgComponent" + style="max-width: 125px; margin-bottom: -10px" + /> </div> </div> <h4 class="subhead mt-2 px-2" style="width: 100%">{{ logoCardText }}</h4> diff --git a/src/components/ServicesSummary.vue b/src/components/ServicesSummary.vue index cc6a31cf..74057e53 100644 --- a/src/components/ServicesSummary.vue +++ b/src/components/ServicesSummary.vue @@ -26,7 +26,7 @@ <v-flex lg2 md3 sm6 xs12> <LogoCard :logoSvg="cnapLogo" - logoCardText="Provide access to development, testing and production enclaves" + logoCardText="Provide access to development, testing, and production enclaves" logoCardUrl="/products/cnap/" /> </v-flex> diff --git a/src/views/CNAP.vue b/src/views/CNAP.vue index 2c9e4e59..25743c5c 100644 --- a/src/views/CNAP.vue +++ b/src/views/CNAP.vue @@ -3,7 +3,7 @@ <PageHeader title="Cloud Native Access Point" subtext - description="CNAP is available on Cloud One to provide access to development, testing and production enclaves at IL-2, IL-4, and IL-5" + description="CNAP is available on Cloud One to provide access to development, testing, and production enclaves at IL-2, IL-4, and IL-5" :logoSvg="cnapLogo" /> <v-container class="px-md-8 px-auto" fluid> -- GitLab