From a7be4c3270f809e635463226d2d1043747c7e82e Mon Sep 17 00:00:00 2001 From: Abhimanyu Rana Date: Sat, 13 May 2023 16:43:10 +0530 Subject: [PATCH] polishing --- src/components/Card.astro | 3 ++- src/layouts/Layout.astro | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/Card.astro b/src/components/Card.astro index 9a490fa..9495170 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -24,7 +24,8 @@ const { href, title, body } = Astro.props; display: flex; background-color: var(--background-secondary); background-position: 100%; - border: 1px solid var(--background-secondary); + border: 1px solid transparent; + border-radius: var(--spacing-01); } .link-card > a { width: 100%; diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index cd4004d..cee82bc 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -29,7 +29,7 @@ const { title } = Astro.props; @@ -74,6 +74,7 @@ const { title } = Astro.props; justify-content: center; align-items: center; border: 1px solid var(--border-muted); + border-radius: var(--spacing-02); @nest [data-theme="dark"] & { --icon-fill: var(--icon-secondary);