WoltLab / WCF

WoltLab Suite Core (previously WoltLab Community Framework)
https://www.woltlab.com
GNU Lesser General Public License v2.1
238 stars 145 forks source link

excessive padding #6065

Open eveneme opened 2 weeks ago

eveneme commented 2 weeks ago

In some sections, in my opinion, the padding is too large, especially on the left and right. I suggest:

.wbbBoardNode {
padding: 10px;
}

change to:

.wbbBoardNode {
padding: 10px 6px;
}

AND

 .boxesSidebarLeft .box:not(.boxBorderless),.boxesSidebarRight .box:not(.boxBorderless) {
        padding:20px;
    }

change to:

 .boxesSidebarLeft .box:not(.boxBorderless),.boxesSidebarRight .box:not(.boxBorderless) {
        padding:14px;
    }

Benefits: more content, better text fill.