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

[BD-46] fix: fixed gutter-with value #80

Open
wants to merge 2 commits into
base: alpha
Choose a base branch
from
Open
Show file tree
Hide file tree
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 paragon/css/core/variables.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* IMPORTANT: This file is the result of assembling design tokens
* Do not edit directly
* Generated on Mon, 27 Nov 2023 16:19:13 GMT
* Generated on Mon, 11 Dec 2023 11:05:39 GMT
*/

:root {
Expand All @@ -19,7 +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: 64px;
--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
2 changes: 1 addition & 1 deletion tokens/src/core/global/spacing.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"spacing": {
"grid": {
"gutter-width": { "value": "64px" }
"gutter-width": { "value": "32px" }
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@adamstankiewicz In a recent pull request you changed the meaning of this design token. Unfortunately, your change affects the visual display of the Layout component. Do you remember why you needed to change the value from 32px to 64px?

}
}
}
Loading