diff --git a/src/components/overrides/Header.astro b/src/components/overrides/Header.astro index 4e49daeaa068fd9..d088348c5a486ad 100644 --- a/src/components/overrides/Header.astro +++ b/src/components/overrides/Header.astro @@ -24,7 +24,7 @@ import AgentDirective from "../AgentDirective.astro"; Log in @@ -68,15 +68,25 @@ import AgentDirective from "../AgentDirective.astro"; align-items: center; justify-content: center; height: 2.25rem; - padding: 0 1.25rem; + padding: 0 0.875rem; border-radius: 0.5rem; + border: 1px solid transparent; font-size: 0.875rem; font-weight: 500; line-height: 1; white-space: nowrap; text-decoration: none; - color: var(--color-header-btn-text); - background-color: var(--color-header-btn-bg); + transition: color 150ms, background-color 150ms, border-color 150ms; + } + + .header-login { + background-color: var(--color-header-fill); + color: var(--color-header-text); + } + + .header-login:hover { + background-color: var(--color-header-line); + color: var(--color-header-hover-text); } :global(.site-title) { diff --git a/src/components/overrides/Sidebar.astro b/src/components/overrides/Sidebar.astro index fbbd91cd8819a1c..5e503494e696fb7 100644 --- a/src/components/overrides/Sidebar.astro +++ b/src/components/overrides/Sidebar.astro @@ -10,13 +10,11 @@ const [product, module] = Astro.url.pathname.split("/").filter(Boolean);
-