Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

ErikGrim

macrumors 604
Original poster
Jun 20, 2003
6,585
5,224
Brisbane, Australia
Front end developer here. Here are some suggested fixes to your css that should clean up some details that bother me:

CSS:
.message-cell.message-cell--main {
    background-color: #fcfcfc
}

Fixes:
Screen Shot 2019-09-23 at 11.09.04.png

Screen Shot 2019-09-23 at 11.09.58.png



Get rid of any clearfixes where you are using flex instead of floats, as it causes phantom margins.
CSS:
.p-navgroup:before, .p-navgroup:after {
    content: " ";
    display:table
}

.p-navgroup:after {
    clear:both
}

In general, don’t mix flex and floats.

Fixes:

Screen Shot 2019-09-23 at 11.36.31.png


I’ll keep updating as I find and fix them, if that’s welcome :)
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.