diff options
Diffstat (limited to 'examples/basics/src/components')
-rw-r--r-- | examples/basics/src/components/Card.astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/basics/src/components/Card.astro b/examples/basics/src/components/Card.astro index 5ce15cca4..bd6d5971e 100644 --- a/examples/basics/src/components/Card.astro +++ b/examples/basics/src/components/Card.astro @@ -24,13 +24,13 @@ const { href, title, body } = Astro.props; list-style: none; display: flex; padding: 1px; - background-color: #23262D; + background-color: #23262d; background-image: none; background-size: 400%; border-radius: 7px; background-position: 100%; transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1); - box-shadow: inset 0 0 0 1px rgba(255,255,255, 0.1); + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); } .link-card > a { width: 100%; @@ -39,7 +39,7 @@ const { href, title, body } = Astro.props; padding: calc(1.5rem - 1px); border-radius: 8px; color: white; - background-color: #23262D; + background-color: #23262d; opacity: 0.8; } h2 { |