From 0f5855b15d8fb0d290e92ec6c31e0f263a715954 Mon Sep 17 00:00:00 2001 From: Borja Gonzalez Date: Thu, 8 Apr 2021 20:07:10 +0200 Subject: [PATCH] Fix wrong color on Result component --- src/styles/components/Result.module.css | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/styles/components/Result.module.css b/src/styles/components/Result.module.css index 4deed49..4568615 100644 --- a/src/styles/components/Result.module.css +++ b/src/styles/components/Result.module.css @@ -1,15 +1,16 @@ .result { background: var(--color-transparent); - width: 30vh; - height: 30vh; + border-radius: 50%; + color: var(--color-dark); font-size: 9vh; font-weight: 500; - line-height: 30vh; - position: absolute; - top: 50%; + height: 30vh; left: 50%; + line-height: 30vh; margin: -15vh; - border-radius: 50%; + position: absolute; text-align: center; + top: 50%; + width: 30vh; z-index: 1; } \ No newline at end of file