Skip to content

Commit

Permalink
style.css -> all.css
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel schulz committed Jan 4, 2024
1 parent d510109 commit c6f69d1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Use this snippet to insert the **base styles**:
Use this snippet to insert the base styles **and all components**:

```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ssstyles/dist/style.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ssstyles/dist/all.css" />
```

### npm
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion esbuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const watchFlag = process.argv.indexOf("--watch") > -1;
const minifyFlag = process.argv.indexOf("--minify") > -1;

const opts = {
entryPoints: ["./css/style.css", "./css/base.css"],
entryPoints: ["./css/all.css", "./css/base.css"],
outdir: "dist",
bundle: true,
minify: minifyFlag,
Expand Down
2 changes: 1 addition & 1 deletion page/assets/style.css.njk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
permalink: style.css
---
{% include "../../dist/style.css" %}
{% include "../../dist/all.css" %}

@media (prefers-color-scheme: light), (prefers-color-scheme: no-preference) {
{% include "../../node_modules/prism-themes/themes/prism-ghcolors.min.css" %}
Expand Down
2 changes: 1 addition & 1 deletion page/pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Use this snippet to insert the **base styles**:
Use this snippet to insert the base styles **and all components**:

```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ssstyles/dist/style.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ssstyles/dist/all.css" />
```

### npm
Expand Down

0 comments on commit c6f69d1

Please sign in to comment.