You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 30, 2021. It is now read-only.
We should consider using less id selectors and possibly, only including normalization when it comes to the box model in screen.css, it causes specificity wars when working with custom themes.
For example:
#column-group-beta p {padding: 10px 0 0 0;}
makes it so that I have to do something like: #column-group-beta .some-class-here p {padding: 0;}
We should just have a base style for p {} that can then be overriden in custom themes like so: p {} or if more specificity needed something like: .foobar p {} should suffice