summaryrefslogtreecommitdiff
path: root/examples/middleware/src/components/Card.astro
diff options
context:
space:
mode:
authorGravatar natemoo-re <natemoo-re@users.noreply.github.com> 2023-09-06 15:25:56 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-09-06 15:25:56 +0000
commiteb7615f25a88c25dc6db50b199877a8f79597a74 (patch)
tree74b5d3773ffb8fa7020e3d3cff2493ba4adc2ed6 /examples/middleware/src/components/Card.astro
parentc06b41a6b86a41ba4b1ffa4bdecafac9b7299768 (diff)
downloadastro-eb7615f25a88c25dc6db50b199877a8f79597a74.tar.gz
astro-eb7615f25a88c25dc6db50b199877a8f79597a74.tar.zst
astro-eb7615f25a88c25dc6db50b199877a8f79597a74.zip
[ci] format
Diffstat (limited to 'examples/middleware/src/components/Card.astro')
-rw-r--r--examples/middleware/src/components/Card.astro4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/middleware/src/components/Card.astro b/examples/middleware/src/components/Card.astro
index a1e0ccf6e..1ff16e5fb 100644
--- a/examples/middleware/src/components/Card.astro
+++ b/examples/middleware/src/components/Card.astro
@@ -30,7 +30,9 @@ const { href, title, body } = Astro.props;
border-radius: 0.6rem;
background-position: 100%;
transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1);
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
+ box-shadow:
+ 0 4px 6px -1px rgba(0, 0, 0, 0.1),
+ 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.link-card > a {