From 040c2a5a85525cb27e4f0a347df49e5fd6cec348 Mon Sep 17 00:00:00 2001 From: Madelena Mak Date: Sun, 30 Jun 2024 08:30:33 -0400 Subject: [PATCH] Fix buttons on the Installation page (#33480) --- sass/homeassistant/pages/_getting_started.scss | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/sass/homeassistant/pages/_getting_started.scss b/sass/homeassistant/pages/_getting_started.scss index c088c200a13..4d18be6c3da 100644 --- a/sass/homeassistant/pages/_getting_started.scss +++ b/sass/homeassistant/pages/_getting_started.scss @@ -127,18 +127,30 @@ .button { display: flex; padding-right: 20px; + border-radius: 32px; + &:not(:first-child) { margin-top: 12px; } - &.accent { - background-color: #34b155; + iconify-icon.external-link { + padding-top: 4px; } + svg { - fill: white; + fill: $link-color; height: 24px; min-width: 24px; } + + &.accent { + background-color: #34b155; + color: white; + + svg { + fill: white; + } + } } } }