Skip to content

Commit

Permalink
example-and-external-config
Browse files Browse the repository at this point in the history
  • Loading branch information
artreaktor-niks committed Apr 20, 2022
1 parent 4fa7b14 commit 02d79ae
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
to: <%= h.src() %>/<%= h.changeCase.lower(name) %>/.stylelintignore
---
/color/*.css
*_external.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
---
to: <%= h.src() %>/<%= h.changeCase.lower(name) %>/packages/components/_typography.css
---
/* Uncomment to import font example */
/*
@font-face {
font-family: "ExampleFont";
src:
local(""),
url("../../fonts/ExampleFont.woff2") format("woff2"),
url("../../fonts/ExampleFont.woff") format("woff");
font-weight: 400;
font-style: normal;
font-display: swap;
}
*/
html {
font-size: var(--root-font-size);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* uncomment next line to import css file external */
/*
@import "libraryURL/css";
*/
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* stylelint-disable */

/* uncomment next line to import css file external */
/* @import "@themeName/components/component_example_external"; */

/* stylelint-enable */

0 comments on commit 02d79ae

Please sign in to comment.