Compare commits

..

2 Commits

Author SHA1 Message Date
Helen Chong 00cbafdabc Unset overflow clip of web graphics on wide screens 2024-08-05 01:37:30 +08:00
Helen Chong 4285426e30 Comment out web graphics overflow CSS properties 2024-08-05 01:19:47 +08:00
1 changed files with 3 additions and 2 deletions

View File

@ -150,7 +150,9 @@ a.link-btn[href^="http"]:not([href*="leilukin.com"]) { padding-right: calc(var(-
padding: 0; padding: 0;
margin: 0; margin: 0;
overflow-x: clip; overflow-x: clip;
overflow-clip-margin: 0.5em; }
@media only screen and (min-width: 60rem) {
.web-graphics { overflow-x: unset; }
} }
/* Adoptables wrapper */ /* Adoptables wrapper */
@ -159,7 +161,6 @@ p + .adoptables { margin-top: 1em; }
/* Tabs */ /* Tabs */
.tabwrap section { display: none; } .tabwrap section { display: none; }
.tabwrap section:target, .tabwrap section:target,
.tabwrap section:has(*:target) { display: block; } .tabwrap section:has(*:target) { display: block; }