Matt Stow

Results 60 comments of Matt Stow

@joeldbirch Can you give me some use-cases for only wanting to scale 1 axis? You can always use the existing `scale` class as you suggest for `scale3d` too like so:...

`scale` only accepts 2 values. It doesn't accept the Z axis like `scale3d` does. I reckon that should be fine for 99% of cases. `scale3d` could be another core placeholder...

If you want a CSS only solution to targeting Blink-based browsers (i.e. not Safari), you can use: ```css @supports not (-apple-trailing-word: inherit) { div[data-slate-editor] { -webkit-user-modify: read-write !important; } }...

If you want a CSS only solution to targeting Blink-based browsers (i.e. not Safari), you can use: ```css @supports not (-apple-trailing-word: inherit) { div[data-slate-editor] { -webkit-user-modify: read-write !important; } }...

Well, a grid would contain any number of grid items, which in turn could contain any arbitrary children including nested grids, so `grid-item` couldn't be included in `grid` by default....

Another good use case example is a `container` component, which can be re-used within a header, main content modules and the footer to create a centered, max-width element within a...

Yes and no ☹ From: porneL Sent: ‎Thursday‎, ‎9‎ ‎January‎ ‎2014 ‎11‎:‎03‎ ‎PM To: pornel/slip Cc: Matt Stow Have you got a WP8 device? Does the mouse event fallback work?...

Microsoft have offered a solution to the viewport bug. I've described it here: http://mattstow.com/responsive-design-in-ie10-on-windows-phone-8.html#update-2013015 Basically, they want us to continue using ``` @-ms-viewport{ width: device-width; } ``` and then using...