diff --git a/docs/grid/basic.md b/docs/grid/basic.md
index 31a04d9c..b2b2e63c 100644
--- a/docs/grid/basic.md
+++ b/docs/grid/basic.md
@@ -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
`medium` : 960
`large` : 1280
`xlarge` : 1920
`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`
1/2 : `half`
1/3 : `third`
2/3 : `two-third`
1/4 : `quarter`
3/4 : `three-quarter`
1/5 : `fifth`
2/5 : `two-fifth`
3/5 : `three-fifth`
4/5 : `four-fifth`
1/6 : `sixth`
5/6 : `five-sixth`| Extra breakpoints automatically generates percentages. More can be added easily. |