Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation on grid settings #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/grid/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The element has to have a `.column` class.
| Variable | Default value | Description |
|-- |-------------|-- |
| `$grid-columns` | `24` | Amount of columns |
| `$grid-design-width`| `1920px` | Base design width. Used for converting rem to grid size and min/max grid | | size
| `$grid-row-width` | `4096px` | Maximum row width, will be set as max-width for rows. |
| `$grid-design-width`| `1920` | Base design width in `px` without the unit. Used for converting rem to grid size and min/max grid | | size
| `$grid-row-width` | `4096` | Maximum row width in `px` without the unit, will be set as max-width for rows. |
| `$grid-breakpoints` | `small` : 750 <br>`medium` : 960<br> `large` : 1280<br> `xlarge` : 1920<br> `xxlarge` : 9999 | Breakpoints used for the grid. All classes will be automatically generated based on | these names and sizes. Do not add classes, this can break many things, changing values is allowed.
| `$grid-parts` | 1/1 : `full`<br> 1/2 : `half`<br> 1/3 : `third`<br> 2/3 : `two-third`<br> 1/4 : `quarter`<br> 3/4 : `three-quarter`<br> 1/5 : `fifth`<br> 2/5 : `two-fifth`<br> 3/5 : `three-fifth`<br> 4/5 : `four-fifth`<br> 1/6 : `sixth`<br> 5/6 : `five-sixth`| Extra breakpoints automatically generates percentages. More can be added easily. |