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

Commit 1c834e5

Browse files
committed
fix: use more generic postcss-wrap
1 parent d977c90 commit 1c834e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

postcss.config.js

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

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ <h1 class="title">Widget Calculator</h1>
4141
</div>
4242
<div class="message-body">
4343
<!-- START: WIDGET -->
44-
<div id="example-calculator" data-button-text="Click here">
44+
<div id="example-calculator" class="widget-instance" data-button-text="Click here">
4545
<progress class="progress is-small is-primary" max="100">0%</progress>
4646
</div>
4747
<!-- END: WIDGET -->

0 commit comments

Comments
 (0)