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 Apr 7, 2018. It is now read-only.
Currently there are some stylesheets using px and others using rem. We need to make sure this is consistent throughout the project. Here are some good rules to follow:
px should only be used to set a consistent component sizing metric, e.g. 10px on the html element to dictate the use of rems, or to set a base font size for text on the site, e.g. 14px on the body element to dictate the use of ems.
rems should only be used in relation to component sizes. It should never be used to dictate font sizes.
Currently there are some stylesheets using
pxand others usingrem. We need to make sure this is consistent throughout the project. Here are some good rules to follow:pxshould only be used to set a consistent component sizing metric, e.g.10pxon thehtmlelement to dictate the use ofrems, or to set a base font size for text on the site, e.g.14pxon thebodyelement to dictate the use ofems.rems should only be used in relation to component sizes. It should never be used to dictate font sizes.