diff --git a/src/components/Sponsors.astro b/src/components/Sponsors.astro index fbc3bbd..cfc177c 100644 --- a/src/components/Sponsors.astro +++ b/src/components/Sponsors.astro @@ -34,7 +34,7 @@ const sponsors = [ const { smallPadding } = Astro.props; --- -
+
{ sponsors.map((sponsor) => ( @@ -46,9 +46,12 @@ const { smallPadding } = Astro.props; )) }
+ diff --git a/src/styles/custom.css b/src/styles/custom.css index 5e1a0ef..c6d2c28 100644 --- a/src/styles/custom.css +++ b/src/styles/custom.css @@ -53,3 +53,16 @@ :root[data-theme="dark"] mobile-starlight-toc nav { background-color: #1f1f1f; } + +a { + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, + opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +button { + transition-property: border-color; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +}