-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds an index.html playground for quickly prototyping with the styles package. It also includes a very simple tokens switch. The dev server is using vite to directly load sass files.
- Loading branch information
Showing
4 changed files
with
553 additions
and
228 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Styles playground</title> | ||
<link id="tokens" rel="stylesheet" href="src/post-tokens-external.scss" /> | ||
<link rel="stylesheet" href="src/elements/_index.scss" /> | ||
<link rel="stylesheet" href="src/components/_index.scss" /> | ||
</head> | ||
<body class="p-4"> | ||
<h1>Styles package playground</h1> | ||
<p class="mb-4"> | ||
Use this playground for quickly developing HTML/CSS components. Run | ||
<code style="background-color: lightgrey; padding: 0.125rem 0.25rem; border-radius: 0.25rem" | ||
>pnpm styles:start</code | ||
> | ||
to get going. | ||
</p> | ||
<label for="tokens-select">Select tokens package: </label> | ||
<select | ||
name="tokens" | ||
id="tokens-select" | ||
value="external" | ||
class="mb-4" | ||
onchange="document.getElementById('tokens').setAttribute('href', `/src/post-tokens-${this.value}.scss`)" | ||
Check warning Code scanning / CodeQL DOM text reinterpreted as HTML Medium DOM text Error loading related location Loading |
||
> | ||
<option value="external">Post external</option> | ||
<option value="internal">Post internal</option> | ||
</select> | ||
<hr /> | ||
|
||
<!-- Place your component markup here --> | ||
<button class="btn btn-primary">Primary button</button> | ||
</body> | ||
</html> |
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.