]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/commitdiff
Update unrealircd-admin.css 8/head
authorMadriix <redacted>
Sat, 4 Feb 2023 11:59:32 +0000 (12:59 +0100)
committerGitHub <redacted>
Sat, 4 Feb 2023 11:59:32 +0000 (12:59 +0100)
Tested on Firefox: as soon as we are on any page, there is the scrollbar activated at the bottom of page.
The div that could pose a problem is the div that contains the nav tag with the "container-fluid" class, the default bootstrap contains a width: 100% and this width when it is removed the scrollbar is removed.
This css disables/resets the width. It seems to work pretty well on my Firefox browser.

css/unrealircd-admin.css

index 36aef73a37bf0e7e54838d1265b115c779140cb6..11ded3b1af60f60e594899ec5a5ce52e18508514 100644 (file)
@@ -240,3 +240,7 @@ body {
 @media (min-width: 577px) and (max-height: 812px) {
   /* CSS rules for landscape screens go here */
 }
+
+.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
+       width: inherit;
+}