-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#63] feat: add support to fetch remote http file content
- Loading branch information
Showing
8 changed files
with
378 additions
and
40 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,21 @@ | ||
@import './local.css'; | ||
|
||
/* Following is very specific to webpack/react projects */ | ||
/* I won't be supporting this in this extension, as a user can import */ | ||
/* such css files from extension settings */ | ||
/* @import '~open-props/open-props.min.css' */ | ||
|
||
@import 'node_modules/open-props/open-props.min.css'; | ||
|
||
/* Following import syntax is supported by vite projects */ | ||
/* Again this is very bundler specific and will not be supported */ | ||
/* @import 'pollen-css/pollen.css'; */ | ||
|
||
@import url(https://unpkg.com/[email protected]/pollen.css); | ||
|
||
body { | ||
color: var(--red-2); | ||
padding: var(--gap-md); | ||
border-color: var(--color-red); | ||
grid-template-columns: var(--grid-page); | ||
} |
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,7 @@ | ||
:root { | ||
--gap-sm: 0.25rem; | ||
--gap-md: 0.5rem; | ||
--gap-lg: 1rem; | ||
--gap-xl: 2rem; | ||
--gap-xxl: 4rem; | ||
} |
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 @@ | ||
{ | ||
"name": "css-imports", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"open-props": "^1.4.14", | ||
"pollen-css": "^4.4.0" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.