summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorSangeeth Sudheer <git@sangeeth.dev>2024-10-28 14:10:57 +0530
committerSangeeth Sudheer <git@sangeeth.dev>2024-10-28 14:10:57 +0530
commiteb222d7d587ea2b3f37813ff18b76e536254d586 (patch)
tree8ca45563df13f24bdd41d63a7760c06efa4fe63b /assets
parent08acb542be7de75b799a948caa5fd3ceaf8d2c0f (diff)
Make header title a link to base URL (home page)
This is a common pattern found in many sites. I've also added styling to remove the underline.
Diffstat (limited to 'assets')
-rw-r--r--assets/css/main.css6
1 files changed, 5 insertions, 1 deletions
diff --git a/assets/css/main.css b/assets/css/main.css
index b08eb15..1675d41 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -141,6 +141,10 @@ hr {
margin-top: 0;
}
+.header-title a {
+ text-decoration: none;
+}
+
/* Footer */
footer {
@@ -523,4 +527,4 @@ blockquote {
blockquote p {
margin-left: 1rem;
margin-right: 1rem;
-} \ No newline at end of file
+}