Skip to content
This repository was archived by the owner on Nov 4, 2022. It is now read-only.

Commit 5d22fd6

Browse files
committed
fix: use more generic postcss-wrap
1 parent 2a12661 commit 5d22fd6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

postcss.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
plugins: [require('postcss-wrap')({ selector: '.example-widget' })],
2+
plugins: [require('postcss-wrap')({ selector: '.widget-instance' })],
33
};

public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h1 class="title">Widget Example</h1>
4242
</div>
4343
<div class="message-body">
4444
<!-- START: WIDGET -->
45-
<div id="example-widget" data-button-text="Click here">
45+
<div id="example-widget" class="widget-instance" data-button-text="Click here">
4646
<progress class="progress is-small is-primary" max="100">0%</progress>
4747
</div>
4848
<!-- END: WIDGET -->

0 commit comments

Comments
 (0)