From b5af0cae15753c880707c0d301a1a9176d206924 Mon Sep 17 00:00:00 2001 From: Niccolo Borgioli Date: Sun, 1 Dec 2024 17:20:40 +0100 Subject: [PATCH] list styles --- .gitignore | 2 ++ src/components/{Links.astro => ContactLinks.astro} | 2 ++ src/styles/global.scss | 5 +++++ 3 files changed, 9 insertions(+) rename src/components/{Links.astro => ContactLinks.astro} (97%) diff --git a/.gitignore b/.gitignore index 16d54bb..b7ffe8b 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ pnpm-debug.log* # jetbrains setting folder .idea/ +output +export.xml diff --git a/src/components/Links.astro b/src/components/ContactLinks.astro similarity index 97% rename from src/components/Links.astro rename to src/components/ContactLinks.astro index 90112f2..667f024 100644 --- a/src/components/Links.astro +++ b/src/components/ContactLinks.astro @@ -36,6 +36,8 @@ const links: { label: string; url: string; icon: astroHTML.JSX.Element }[] = [ display: flex; flex-direction: column; gap: 1rem; + list-style: none; + margin: 0; } a { diff --git a/src/styles/global.scss b/src/styles/global.scss index 9e4e8e7..a145bae 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -94,3 +94,8 @@ pre { margin: 1rem 0; display: block; } + +ul { + list-style: square; + margin-left: 1rem; +}