when building famo.us apps, how are people dealing with screensizes for different devices?
i actually do NOT want to do a responsive layout - i would be happy with just scaling the content to fit the device.
Although we can use % positioning for famo.us elements, this doesn't work for fonts. Especially as the viewport-size based font sizing isn't supported by the android browser.
Is there a way to render into a surface of a fixed size, and then have that surface simply scaled to fit the viewport? perhaps with a fixed setting like:
#jade
meta(name="viewport", content="width=500")
Any other approaches people are taking for hitting desktop, tables, mobile would be great to know.