-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ use profile-components for github wc (#28)
* 🔧 patch for vscode to allow newer css * ✨ use profile-components for github wc * 🔥 remove github and unused stories * 🔥 remove google analytics * 🐛 fix releases
- Loading branch information
Showing
48 changed files
with
357 additions
and
1,754 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
module.exports = { | ||
"deps": { | ||
"bump": "inherit" | ||
} | ||
export default { | ||
deps: { | ||
bump: 'inherit' | ||
}, | ||
debug: true, | ||
} |
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,4 @@ | ||
Settings add missing support for css container query syntax | ||
|
||
@see https://github.com/wileycoyote78/custom-css/ | ||
@see https://stackoverflow.com/questions/76125833/container-type-property-and-container-rule-are-not-recognized-by-vs-code/76125894#76125894 |
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,88 @@ | ||
{ | ||
"version": 1.1, | ||
"$schema": "https://raw.githubusercontent.com/microsoft/vscode-css-languageservice/master/docs/customData.schema.json", | ||
"atDirectives": [ | ||
{ | ||
"name": "@container", | ||
"description": { | ||
"kind": "markdown", | ||
"value": "The **@container** CSS at-rule is a conditional group rule that applies styles to a containment context." | ||
}, | ||
"references": [ | ||
{ | ||
"name": "MDN reference", | ||
"url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@container" | ||
} | ||
], | ||
"browsers": [ | ||
"E105", | ||
"FF110", | ||
"C105", | ||
"S16.0", | ||
"O91" | ||
] | ||
} | ||
], | ||
"properties": [ | ||
{ | ||
"name": "container-type", | ||
"description": { | ||
"kind": "markdown", | ||
"value": "The **container-type** CSS property is used to define the type of containment used in a container query." | ||
}, | ||
"references": [ | ||
{ | ||
"name": "MDN reference", | ||
"url": "https://developer.mozilla.org/docs/Web/CSS/container-type" | ||
} | ||
], | ||
"browsers": [ | ||
"E105", | ||
"FF110", | ||
"C105", | ||
"S16.0", | ||
"O91" | ||
] | ||
}, | ||
{ | ||
"name": "container-name", | ||
"description": { | ||
"kind": "markdown", | ||
"value": "The **container-name** CSS property specifies a list of query container names used by the **@container** at rule in a container query." | ||
}, | ||
"references": [ | ||
{ | ||
"name": "MDN reference", | ||
"url": "https://developer.mozilla.org/en-US/docs/Web/CSS/container-name" | ||
} | ||
], | ||
"browsers": [ | ||
"E105", | ||
"FF110", | ||
"C105", | ||
"S16.0", | ||
"O91" | ||
] | ||
}, | ||
{ | ||
"name": "container", | ||
"description": { | ||
"kind": "markdown", | ||
"value": "The **container** shorthand CSS property establishes the element as a query container and specifies the name or name for the containment used in a container query." | ||
}, | ||
"references": [ | ||
{ | ||
"name": "MDN reference", | ||
"url": "https://developer.mozilla.org/en-US/docs/Web/CSS/container" | ||
} | ||
], | ||
"browsers": [ | ||
"E105", | ||
"FF110", | ||
"C105", | ||
"S16.0", | ||
"O91" | ||
] | ||
} | ||
] | ||
} |
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 @@ | ||
{ | ||
"css.customData": [ | ||
"./.vscode/custom-css.json" | ||
], | ||
"prettier.enable": true, | ||
} |
Oops, something went wrong.