From f9c74860dd4f5da624f46abec4f186a7c906b651 Mon Sep 17 00:00:00 2001 From: lifeadventurer Date: Fri, 1 Nov 2024 22:37:59 +0800 Subject: [PATCH] Style(fortune): Remove margin on the left for the first dot in preview container --- fortune_generator/css/styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fortune_generator/css/styles.css b/fortune_generator/css/styles.css index 2a34d14..805ca3b 100644 --- a/fortune_generator/css/styles.css +++ b/fortune_generator/css/styles.css @@ -144,3 +144,7 @@ button:hover { border-radius: 50%; /* Circular shape */ margin-left: 5px; /* Spacing between dots */ } + +.color-preview .color-dot:first-child { + margin-left: 0; /* No margin on the left for the first dot */ +}