From 419c59ddbc52dda6879afe5779f1af7946ca14d6 Mon Sep 17 00:00:00 2001 From: Divyanshu Date: Wed, 29 Apr 2026 12:53:18 +0530 Subject: [PATCH] Fix:reduce extra padding on mobile view --- styles/cover.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/styles/cover.css b/styles/cover.css index 0bedefd1..42fbf215 100644 --- a/styles/cover.css +++ b/styles/cover.css @@ -262,5 +262,10 @@ button.close { font-size: 3.5rem; } } - + +@media (max-width: 768px) { + .cover { + padding: 0; + } +} .github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}