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; +}