-
-
Notifications
You must be signed in to change notification settings - Fork 4k
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
14 changed files
with
291 additions
and
15 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 |
---|---|---|
|
@@ -17,5 +17,6 @@ test.css.map | |
_gh_pages | ||
_site | ||
dev | ||
dist | ||
node_modules | ||
test/output/ |
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
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,16 @@ | ||
import VarItem from "components/VarItem"; | ||
import { CSSVAR_KEYS } from "root/constants"; | ||
|
||
function Control() { | ||
const ids = CSSVAR_KEYS.control.map((i) => i.id); | ||
|
||
return ( | ||
<div> | ||
{ids.map((id) => { | ||
return <VarItem key={id} id={id} />; | ||
})} | ||
</div> | ||
); | ||
} | ||
|
||
export default Control; |
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,16 @@ | ||
import VarItem from "components/VarItem"; | ||
import { CSSVAR_KEYS } from "root/constants"; | ||
|
||
function File() { | ||
const ids = CSSVAR_KEYS.file.map((i) => i.id); | ||
|
||
return ( | ||
<div> | ||
{ids.map((id) => { | ||
return <VarItem key={id} id={id} />; | ||
})} | ||
</div> | ||
); | ||
} | ||
|
||
export default File; |
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,16 @@ | ||
import VarItem from "components/VarItem"; | ||
import { CSSVAR_KEYS } from "root/constants"; | ||
|
||
function Input() { | ||
const ids = CSSVAR_KEYS.input.map((i) => i.id); | ||
|
||
return ( | ||
<div> | ||
{ids.map((id) => { | ||
return <VarItem key={id} id={id} />; | ||
})} | ||
</div> | ||
); | ||
} | ||
|
||
export default Input; |
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,16 @@ | ||
import VarItem from "components/VarItem"; | ||
import { CSSVAR_KEYS } from "root/constants"; | ||
|
||
function Columns() { | ||
const ids = CSSVAR_KEYS.columns.map((i) => i.id); | ||
|
||
return ( | ||
<div> | ||
{ids.map((id) => { | ||
return <VarItem key={id} id={id} />; | ||
})} | ||
</div> | ||
); | ||
} | ||
|
||
export default Columns; |
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,16 @@ | ||
import VarItem from "components/VarItem"; | ||
import { CSSVAR_KEYS } from "root/constants"; | ||
|
||
function Grid() { | ||
const ids = CSSVAR_KEYS.grid.map((i) => i.id); | ||
|
||
return ( | ||
<div> | ||
{ids.map((id) => { | ||
return <VarItem key={id} id={id} />; | ||
})} | ||
</div> | ||
); | ||
} | ||
|
||
export default Grid; |
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,16 @@ | ||
import VarItem from "components/VarItem"; | ||
import { CSSVAR_KEYS } from "root/constants"; | ||
|
||
function Footer() { | ||
const ids = CSSVAR_KEYS.footer.map((i) => i.id); | ||
|
||
return ( | ||
<div> | ||
{ids.map((id) => { | ||
return <VarItem key={id} id={id} />; | ||
})} | ||
</div> | ||
); | ||
} | ||
|
||
export default Footer; |
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,16 @@ | ||
import VarItem from "components/VarItem"; | ||
import { CSSVAR_KEYS } from "root/constants"; | ||
|
||
function Hero() { | ||
const ids = CSSVAR_KEYS.hero.map((i) => i.id); | ||
|
||
return ( | ||
<div> | ||
{ids.map((id) => { | ||
return <VarItem key={id} id={id} />; | ||
})} | ||
</div> | ||
); | ||
} | ||
|
||
export default Hero; |
Oops, something went wrong.