Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix class name and npm organisation in docs #3

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This example is using the [unpkg.com CDN](unpkg.com) for prototyping. This is a
Include the Design Token CSS variables:

```html
<link rel="stylesheet" type="text/css" href="https://unpkg.com/@rotterdam/design-tokens/dist/index.css" />
<link rel="stylesheet" type="text/css" href="https://unpkg.com/@gemeente-rotterdam/design-tokens/dist/index.css" />
```

Combine it with the CSS packages from the NL Design System community:
Expand All @@ -43,8 +43,8 @@ Combine it with the CSS packages from the NL Design System community:
And use the [code snipped provided in Storybook](http://localhost:6006/?path=/docs/css-utrecht-button--docs) to get the identical component in code:

```html
<!-- Set the rotterdam-theme to include Rotterdam styling for all NL Design System components -->
<body class="rotterdam-theme">
<!-- Set the rods-theme to include Rotterdam styling for all NL Design System components -->
<body class="rods-theme">
<!-- Include component from Utrecht, Den Haag, Rotterdam or other community library -->
<button class="utrecht-button" type="button">Label</button>
</body>
Expand All @@ -54,7 +54,7 @@ Here's a complete example:

```html
<!doctype html>
<html class="rotterdam-theme">
<html class="rods-theme">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://unpkg.com/@utrecht/component-library-css/dist/index.css" />
Expand Down
2 changes: 1 addition & 1 deletion packages/web-components-stencil/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
https://stenciljs.com/docs/dev-server

-->
<html dir="ltr" lang="en" class="rotterdam-theme">
<html dir="ltr" lang="en" class="rods-theme">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
Expand Down
Loading