From 54169fe22beaf961e1a192f42047d9bd6a7ac556 Mon Sep 17 00:00:00 2001 From: Joel DSouza Date: Tue, 11 Aug 2020 06:34:36 +0530 Subject: [PATCH] Fixed broken tick icons placement in Settings --- components/settings/swatch.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/settings/swatch.vue b/components/settings/swatch.vue index 3fc7207db..43693be67 100644 --- a/components/settings/swatch.vue +++ b/components/settings/swatch.vue @@ -14,6 +14,7 @@ .color { display: inline-flex; align-items: center; + position: relative; justify-content: center; margin: 8px; padding: 16px; @@ -36,6 +37,11 @@ .activeTick { position: absolute; + margin: auto; + top: 0; + bottom: 0; + left: 0; + right: 0; } }