-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from chainlift/naming-cleanup-and-sync-with-docs
Naming cleanup and sync with docs
- Loading branch information
Showing
88 changed files
with
4,163 additions
and
19,378 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
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,18 @@ | ||
/* Item Alignment */ | ||
|
||
.align-items__stretch { | ||
align-items: stretch; | ||
} | ||
|
||
.align-items__center { | ||
align-items: center; | ||
} | ||
|
||
.align-items__top { | ||
align-items: flex-start; | ||
} | ||
|
||
.align-items__start { | ||
align-items: flex-start; | ||
} | ||
|
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,23 @@ | ||
.align-self__start { | ||
align-self: start; | ||
} | ||
|
||
.align-self__end { | ||
align-self: end; | ||
} | ||
|
||
.align-self__center { | ||
align-self: center; | ||
} | ||
|
||
.align-self__stretch { | ||
align-self: stretch; | ||
} | ||
|
||
.align-self__baseline { | ||
align-self: baseline; | ||
} | ||
|
||
.align-self__auto { | ||
align-self: auto; | ||
} |
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,32 @@ | ||
/*How to use | ||
the aspect-ratio property maintains the proportion of width to height. | ||
For it to work, either the width or the height of the element must be set | ||
to a value besides "auto." It can be fixed-width or responsive, but it must be set. | ||
Either width or height must be set to auto in order for aspect-ratio to work. | ||
Template: aspect-ratio: width / height; | ||
*/ | ||
|
||
.aspect__16x9 { | ||
aspect-ratio: 16 / 9; | ||
} | ||
|
||
.aspect__4x3 { | ||
aspect-ratio: 4 / 3; | ||
|
||
} | ||
|
||
.aspect__3x2 { | ||
aspect-ratio: 3 / 2; | ||
} | ||
|
||
.aspect__9x16 { | ||
aspect-ratio: 9 / 16; | ||
} | ||
|
||
.aspect__1x1 { | ||
aspect-ratio: 1; | ||
} |
Oops, something went wrong.