Skip to content

Commit 9bfba01

Browse files
committed
fix missing sfc styles - they were commented out
1 parent dd8ae9d commit 9bfba01

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

component-library/scripts/build-theme-css.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function main() {
101101
);
102102
}
103103

104-
output += '\n/* SFC <style> blocks extracted all .vue components\n' + "@import './sfc-styles.css';\n";
104+
output += '\n/* SFC <style> blocks extracted all .vue components */\n' + "@import './sfc-styles.css';\n";
105105

106106
output +=
107107
"\n/* Library utility classes, compiled from the library's own components.\n" +

component-library/src/components/wrapped/BccButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const buttonBindings = computed((): PrimeButtonProps => {
4949
</PrimeButton>
5050
</template>
5151

52-
<style scoped>
52+
<style>
5353
@reference '../../style.css';
5454
5555
.p-button.useCtx {

0 commit comments

Comments
 (0)