gel-grid
gel-grid copied to clipboard
A flexible code implementation of the GEL Grid Guidelines
The recently-updated-and-moved BBC Subtitle Guidelines now use gel-grid - my product in Media Service, available at https://www.bbc.co.uk/accessibility/forproducts/guides/subtitles/ - feel free to add it/us! Thanks for your work here.
The Readme file says that: "_The easiest way to get started with the GEL Grid component is to use the compiled version of the grid included within this repository._" But...
Full error that is shown in the terminal when starting an app that uses dart sass and gel-grid: https://github.com/bbc/gel-grid/blob/1d48de58ea4c4040530a8a79f8262b0f20bd0fe2/lib/_tools.scss ``` DEPRECATION WARNING: Using / for division is deprecated and will...
Because of `/* autoprefixer: off */` statement in `lib/_tools.scss` autoprefixer is disabled for the entire generated css file when gel-grid is used. Any ideas?
Currently there is no fallback for browsers that do not support flexbox for `equal`. You could make `.equal` this: ``` .gel-layout--equal { display: table; table-layout: fixed; width: 100%; display: flex;...
I have the following `main.scss`: ``` $gel-grid-enable--markup-output: true; $gel-grid-enable--box-sizing: true; @import '~gel-sass-tools/sass-tools'; @import '~sass-mq/mq'; @import '~gel-grid/grid'; ``` But the grid does not render correctly like this. I have to add...
In iPlayer we have had the need to add some classes which show / hide grid columns based on breakpoint. The current implementation we have is a simple 'display: none'...
Hi there, I've been looking to implement the GEL Grid on a site I'm working on. I started by using the html from the [demo page](https://github.com/bbc/gel-grid/blob/master/demo/src/index.html) in this repo, with...
Because of the padding on `gel-layout__item` you get overflow If you are going to split by 50% you can not have padding or margin as well e.g. ``` html ```...
Closes #51