diff --git a/src/app.css b/src/app.css index a6c7f4e..6d7278b 100644 --- a/src/app.css +++ b/src/app.css @@ -1189,6 +1189,7 @@ a[href^='http'][rel*='nofollow']:visited:not(:has(div)) { } } .updates-button { + display: none; position: absolute; z-index: 2; top: 3em; @@ -2650,3 +2651,9 @@ ul.link-list li a .icon { transform: translateX(calc(-50% + var(--main-width) / 2)); } } +/* Stick the popups */ +.sticky-column { + position: sticky; + top: 110px; + height: calc(100vh - 120px); +} diff --git a/src/index.css b/src/index.css index 3b89805..1d4ee78 100644 --- a/src/index.css +++ b/src/index.css @@ -518,13 +518,3 @@ kbd { .shazam-container-horizontal[hidden] { grid-template-columns: 0fr; } - -/* Stick the popups */ -.sticky-column { - position: sticky; - top: 110px; - height: calc(100vh - 120px); -} -.updates-button { - display: none; -}