diff --git a/styles/components/icon.css b/styles/components/icon.css index 2d82074..8fbbc53 100644 --- a/styles/components/icon.css +++ b/styles/components/icon.css @@ -1,3 +1,3 @@ .icon { - filter: drop-shadow(1px 1px 0 var(--background)); + filter: drop-shadow(1px 1px 2px var(--background)); } diff --git a/styles/components/views/landing.css b/styles/components/views/landing.css index cfe8916..d78d63a 100644 --- a/styles/components/views/landing.css +++ b/styles/components/views/landing.css @@ -15,6 +15,7 @@ .view-landing-titles { grid-area: titles; + text-shadow: 2px 2px 4px var(--background); } .view-landing-titles-title { diff --git a/styles/elements.css b/styles/elements.css index a38550b..4bb91be 100644 --- a/styles/elements.css +++ b/styles/elements.css @@ -6,13 +6,12 @@ body { color: var(--foreground); font-family: sans-serif; - text-shadow: 1px 1px 0 var(--background); + text-shadow: 1px 1px 2px var(--background); min-height: 100vh; } h1, h2, h3, h4, h5, h6 { - text-shadow: 2px 2px 0 var(--background); margin: 0; }