From af3a47999c128cc8543d310f61d94a7a7c1d89b3 Mon Sep 17 00:00:00 2001 From: kristof de spiegeleer Date: Mon, 12 Jul 2021 09:34:35 +0000 Subject: [PATCH] Fix map stats --- .../sections/cta-sections/StateMap.vue | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/components/marketing/sections/cta-sections/StateMap.vue b/src/components/marketing/sections/cta-sections/StateMap.vue index 89e06c47a..64baa4ae0 100644 --- a/src/components/marketing/sections/cta-sections/StateMap.vue +++ b/src/components/marketing/sections/cta-sections/StateMap.vue @@ -13,7 +13,7 @@ >
@@ -117,18 +117,28 @@ export default { } dd { - height: 180; - width: 180px; + height: 120; + width: 120px; margin: auto; border-radius: 50%; - line-height: 180px; + line-height: 120px; border: 3px solid #847fc2; background-color: #313f92; color: #dacef5; + font-size: 2rem; } .green { background-color: #92f5d9; color: #313f92; } + +@media only screen and (min-width: 1800px) { + dd { + height: 180px; + width: 180px; + line-height: 180px; + font-size: 3rem; + } +} \ No newline at end of file