diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-18 03:38:54 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-18 03:38:54 +0300 |
commit | b9d8d5ca28d859dab7646b102c1b843dd48790f2 (patch) | |
tree | 7b10df6f4cbb524426265d3575d86800d0b1593d /src/components | |
parent | 61e7f5d5b4bf366dbf77b62e788f2aac251a6e1e (diff) | |
download | popov.link-b9d8d5ca28d859dab7646b102c1b843dd48790f2.tar.xz popov.link-b9d8d5ca28d859dab7646b102c1b843dd48790f2.zip |
Fixed visited link
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/PostSummary.astro | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/PostSummary.astro b/src/components/PostSummary.astro index 59d7683..329f1ce 100644 --- a/src/components/PostSummary.astro +++ b/src/components/PostSummary.astro @@ -18,6 +18,10 @@ const formattedDate = dayjs(post.data.pubDate.toString()).format("MMMM DD, YYYY" color: $colorText; display: block; padding-bottom: 3rem; + + &:visited { + color: $colorText; + } } h2 { |