foundation / foundation-sites

The most advanced responsive front-end framework in the world. Quickly create prototypes and production code for sites that work on any kind of device.
https://get.foundation
MIT License
29.66k stars 5.48k forks source link

Grid .row Not Abiding Max-Width #7195

Closed EricWOdom closed 8 years ago

EricWOdom commented 8 years ago

Complete download of Foundation from download page, foundation.css, line 420

.row {
    max-width: 62.5remrem;
    margin-left: auto;
    margin-right: auto;
}

Should be

.row {
    max-width: 62.5rem;
    margin-left: auto;
    margin-right: auto;
}
EricWOdom commented 8 years ago

The remrem issue is also present in:

.hr line 1174 .reveal line 2447 .reveal.tiny line 2458 .reveal.small line 2462 .reveal.large line 2466

EricWOdom commented 8 years ago

Just realized I duplicated the issue from https://github.com/zurb/foundation-sites/issues/7180 - closing this issue.