@utrecht/component-library-css 1.0.0-alpha.216 → 1.0.0-alpha.217

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -16,7 +16,7 @@ Theoretically you can include the components in your HTML page like so, but this
16
16
  <html lang="en">
17
17
  <head>
18
18
  <title>Example page</title>
19
- <link rel="stylesheet" href="node_modules/@utrecht/component-library-css/dist/bem.css" />
19
+ <link rel="stylesheet" href="node_modules/@utrecht/component-library-css" />
20
20
  </head>
21
21
  <body>
22
22
  <h1 class="utrecht-heading-1">Home</h1>
@@ -29,7 +29,7 @@ The BEM class names can be particularly useful to include only the CSS you need
29
29
 
30
30
  ```js
31
31
  import React from "react";
32
- import style from "@utrecht/component-library-css/dist/bem.css";
32
+ import style from "@utrecht/component-library-css";
33
33
 
34
34
  export default class ExamplePage extends React.Component {
35
35
  render() {