-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "spacing.css" to
@eventstore-ui/assets
.
- Move `assets` to "packages" folder, as it's not a tool. - Add spacing to `dev.css` for internal configs
- Loading branch information
1 parent
85b5f64
commit 1841285
Showing
34 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@eventstore-ui/assets': minor | ||
--- | ||
|
||
Added "spacing" css file |
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,12 @@ | |
"files": [ | ||
"assets/", | ||
"font-face.css", | ||
"spacing.css", | ||
"index.ts" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:EventStore/Design-System.git", | ||
"directory": "tools/assets" | ||
"directory": "packages/assets" | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
:root { | ||
/** The basic unit of spacing */ | ||
--spacing-base: 8px; | ||
|
||
--spacing-0: 0; | ||
--spacing-0_5: calc(var(--spacing-base) * 0.5); | ||
--spacing-1: var(--spacing-base); | ||
--spacing-1_5: calc(var(--spacing-base) * 1.5); | ||
--spacing-2: calc(var(--spacing-base) * 2); | ||
--spacing-2_5: calc(var(--spacing-base) * 2.5); | ||
--spacing-3: calc(var(--spacing-base) * 3); | ||
--spacing-4: calc(var(--spacing-base) * 4); | ||
--spacing-5: calc(var(--spacing-base) * 5); | ||
--spacing-6: calc(var(--spacing-base) * 6); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters