mobi-css / mobi.css

A lightweight, scalable, mobile-first CSS framework
http://getmobicss.com/
MIT License
2.34k stars 145 forks source link

Any plan for `rem` #30

Closed jieyou closed 7 years ago

jieyou commented 7 years ago

rem layout is a popular and modern way to deal with mobile pages layout. Is there any plan to support it?

xcatliu commented 7 years ago

Actually Mobi.css support rem now:

You can checkout the _reset.scss and _variables.scss

html {
  font-size: 10px;
}

body {
  font-size: 1.8rem;
}

But I kept some margins and paddings using px:

mt-30 {
  margin-top: 30px;
}
xcatliu commented 7 years ago

Do you mean that I should replace all variables in _vaiables.scss from px to rem?