-
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.
- Loading branch information
Showing
23 changed files
with
360 additions
and
592 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
@for $i from 1 to 3 { | ||
.size_$(i){ | ||
.size_$(i), | ||
.size_$(i)_sibling { | ||
font-size: $(i)em; | ||
} | ||
} | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
{"size_1":"oPlD0W","size_2":"FCG5GQ","size_3":"d8yso7","calc1":"_8N2ZPM","child_1_1":"_8Urr0R","modifier_1_1":"e2agTq","child_1_2":"vlAfUd","modifier_1_2":"PgUB93","child_1_3":"utNk9X","modifier_1_3":"bwOLNP","calc2":"Xj0KNQ","child_2_1":"SnZr3u","modifier_2_1":"tNdUvj","child_2_2":"bUAlDZ","modifier_2_2":"lpuLLH","child_2_3":"MdYjYw","modifier_2_3":"YK_gQZ","calc3":"mUzFkS","child_3_1":"KCb6ES","modifier_3_1":"_2PGpjA","child_3_2":"_4_kJbH","modifier_3_2":"eCH6U5","child_3_3":"LSjKrm","modifier_3_3":"RYF8kF"} | ||
{"size_1":"oPlD0W","size_1_sibling":"NRaoKv","size_2":"FCG5GQ","size_2_sibling":"H9WShg","size_3":"d8yso7","size_3_sibling":"uGM3oi","calc1":"_8N2ZPM","child_1_1":"_8Urr0R","modifier_1_1":"e2agTq","child_1_2":"vlAfUd","modifier_1_2":"PgUB93","child_1_3":"utNk9X","modifier_1_3":"bwOLNP","calc2":"Xj0KNQ","child_2_1":"SnZr3u","modifier_2_1":"tNdUvj","child_2_2":"bUAlDZ","modifier_2_2":"lpuLLH","child_2_3":"MdYjYw","modifier_2_3":"YK_gQZ","calc3":"mUzFkS","child_3_1":"KCb6ES","modifier_3_1":"_2PGpjA","child_3_2":"_4_kJbH","modifier_3_2":"eCH6U5","child_3_3":"LSjKrm","modifier_3_3":"RYF8kF"} |
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
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,3 @@ | ||
**/*.tsx | ||
**/*.ts | ||
!**/*.d.ts |
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,22 @@ | ||
@keyframes fade-in { | ||
0%, | ||
10% { | ||
opacity: 0; | ||
} | ||
15% { | ||
opacity: 0.4; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.fade-in { | ||
animation-duration: 250ms; | ||
animation-name: fade-in; | ||
} | ||
|
||
.alias { | ||
animation-duration: 250ms; | ||
animation-name: fade-in; | ||
} |
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,3 @@ | ||
declare const fade-in: string; | ||
declare const alias: string | ||
export { fade-in, alias } |
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 @@ | ||
{"fade-in":"btLJzz","alias":"_8_jRhp"} |
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,22 @@ | ||
@keyframes fade-in { | ||
0%, | ||
10% { | ||
opacity: 0; | ||
} | ||
15% { | ||
opacity: 0.4; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.fade-in { | ||
animation-duration: 250ms; | ||
animation-name: fade-in; | ||
} | ||
|
||
.alias { | ||
animation-duration: 250ms; | ||
animation-name: fade-in; | ||
} |
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,6 @@ | ||
{ | ||
"name": "@my-org/keyframes", | ||
"version": "0.0.1", | ||
"main": "module.css.json", | ||
"sideEffects": false | ||
} |
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,22 @@ | ||
@keyframes btLJzz { | ||
0%, | ||
10% { | ||
opacity: 0; | ||
} | ||
15% { | ||
opacity: 0.4; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.btLJzz { | ||
animation-duration: 250ms; | ||
animation-name: btLJzz; | ||
} | ||
|
||
._8_jRhp { | ||
animation-duration: 250ms; | ||
animation-name: btLJzz; | ||
} |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
.single-nesting { | ||
color: red; | ||
|
||
.child { | ||
.child, | ||
.sibling { | ||
color: blue; | ||
} | ||
} | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
{"single-nesting":"AkiP_t","child":"l-e8AL","deep-nesting":"pBcZ8q","grandchild":"oLzZ_N","class-combination":"Vsez8s","modifier":"onlaI8","complex":"HbTeo6","child-modifier":"IEmj7p","nested":"vruPji","nested-pseudo":"DG8Mjh","hover-child":"PH_qY8","hover-child-modifier":"Tmf42F"} | ||
{"single-nesting":"AkiP_t","child":"l-e8AL","sibling":"B_oqE3","deep-nesting":"pBcZ8q","grandchild":"oLzZ_N","class-combination":"Vsez8s","modifier":"onlaI8","complex":"HbTeo6","child-modifier":"IEmj7p","nested":"vruPji","nested-pseudo":"DG8Mjh","hover-child":"PH_qY8","hover-child-modifier":"Tmf42F"} |
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
color: red | ||
} | ||
|
||
.AkiP_t .l-e8AL { | ||
.AkiP_t .l-e8AL, | ||
.AkiP_t .B_oqE3 { | ||
color: blue; | ||
} | ||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@utilitycss/atomic", | ||
"version": "0.15.0", | ||
"version": "0.15.1", | ||
"author": "Andrea Moretti (@axyz) <[email protected]>", | ||
"description": "Atomic CSS composition for yarn workspaces", | ||
"repository": "utilitycss/atomic", | ||
|
@@ -28,12 +28,12 @@ | |
"chokidar": "^3.5.1", | ||
"clear": "^0.1.0", | ||
"commander": "^7.1.0", | ||
"cssnano": "5.0.0-rc.0", | ||
"cssnano-preset-advanced": "^4.0.7", | ||
"cssnano": "5.0.0-rc.1", | ||
"cssnano-preset-advanced": "^5.0.0-rc.1", | ||
"figlet": "^1.5.0", | ||
"handlebars": "^4.7.7", | ||
"inquirer": "^7.3.3", | ||
"postcss-discard-empty": "^5.0.0-rc.0", | ||
"postcss-discard-empty": "^5.0.0-rc.1", | ||
"postcss-modules": "^4.0.0" | ||
}, | ||
"devDependencies": { | ||
|
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
Oops, something went wrong.