Skip to content

Commit

Permalink
fix: added grid-gutter-width token (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
PKulkoRaccoonGang committed Jun 16, 2023
1 parent ed238f8 commit 66f54b3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion paragon/_variables.scss
Expand Up @@ -346,7 +346,7 @@ $link-hover-decoration: var(--pgn-typography-link-decoration-hover) !default;
// Set the number of columns and specify the width of the gutters.

// $grid-columns: 12 !default;
$grid-gutter-width: 32px !default;
$grid-gutter-width: var(--pgn-spacing-grid-gutter-width) !default;
// $grid-row-columns: 6 !default;


Expand Down
3 changes: 2 additions & 1 deletion paragon/css/core/variables.css
@@ -1,7 +1,7 @@
/**
* IMPORTANT: This file is the result of assembling design tokens
* Do not edit directly
* Generated on Sun, 04 Jun 2023 20:23:54 GMT
* Generated on Thu, 15 Jun 2023 15:32:46 GMT
*/

:root {
Expand All @@ -19,6 +19,7 @@
--pgn-typography-btn-font-weight: 500;
--pgn-typography-badge-font-weight: 400;
--pgn-typography-badge-font-size: 0.75rem;
--pgn-spacing-grid-gutter-width: 32px;
--pgn-spacing-dropdown-padding-y-item: .625rem;
--pgn-spacing-dropdown-padding-y-base: .5rem;
--pgn-spacing-card-spacer-y: 1rem;
Expand Down
7 changes: 7 additions & 0 deletions tokens/src/core/global/spacing.json
@@ -0,0 +1,7 @@
{
"spacing": {
"grid": {
"gutter-width": { "value": "32px" }
}
}
}

0 comments on commit 66f54b3

Please sign in to comment.