diff options
author | 2023-09-06 15:25:56 +0000 | |
---|---|---|
committer | 2023-09-06 15:25:56 +0000 | |
commit | eb7615f25a88c25dc6db50b199877a8f79597a74 (patch) | |
tree | 74b5d3773ffb8fa7020e3d3cff2493ba4adc2ed6 /examples/middleware | |
parent | c06b41a6b86a41ba4b1ffa4bdecafac9b7299768 (diff) | |
download | astro-eb7615f25a88c25dc6db50b199877a8f79597a74.tar.gz astro-eb7615f25a88c25dc6db50b199877a8f79597a74.tar.zst astro-eb7615f25a88c25dc6db50b199877a8f79597a74.zip |
[ci] format
Diffstat (limited to 'examples/middleware')
-rw-r--r-- | examples/middleware/src/components/Card.astro | 4 | ||||
-rw-r--r-- | examples/middleware/src/layouts/Layout.astro | 13 |
2 files changed, 13 insertions, 4 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 { diff --git a/examples/middleware/src/layouts/Layout.astro b/examples/middleware/src/layouts/Layout.astro index b3def2637..90d2fb715 100644 --- a/examples/middleware/src/layouts/Layout.astro +++ b/examples/middleware/src/layouts/Layout.astro @@ -6,7 +6,7 @@ interface Props { const { title } = Astro.props; --- -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> @@ -29,7 +29,14 @@ const { title } = Astro.props; background-color: #f6f6f6; } code { - font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, - Bitstream Vera Sans Mono, Courier New, monospace; + font-family: + Menlo, + Monaco, + Lucida Console, + Liberation Mono, + DejaVu Sans Mono, + Bitstream Vera Sans Mono, + Courier New, + monospace; } </style> |