Skip to content

Commit de0f750

Browse files
committed
wip
1 parent 99e4609 commit de0f750

File tree

11 files changed

+494
-462
lines changed

11 files changed

+494
-462
lines changed

packages/dev/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<meta name="theme-color" content="#000000" />
1111
<title>React Demo App</title>
1212
</head>
13-
<body style="--pf-global--FontSize--md: 14px;">
13+
<body>
1414
<noscript>You need to enable JavaScript to run this app.</noscript>
1515
<div id="root"></div>
1616
</body>

packages/module/rollup.config.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,21 @@ export default [
6060
external: ['react', 'react-dom'],
6161
plugins: plugins(true),
6262
},
63+
// {
64+
// input: 'src/overrides.ts',
65+
// output: {
66+
// file: 'dist/overrides.js',
67+
// format: 'es',
68+
// sourcemap: true,
69+
// },
70+
// plugins: [
71+
// scss({
72+
// output: 'dist/overrides.css',
73+
// includePaths: ['../../node_modules/'],
74+
// importer(path) {
75+
// return { file: path[0] !== '~' ? path : path.slice(1) };
76+
// }
77+
// }),
78+
// ],
79+
// },
6380
];

packages/module/src/ConsoleInternal/style.scss

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
@import 'style/base';
44

5-
// Mixins
6-
@import 'style/mixin/break-word';
7-
8-
// Overrides
9-
@import 'style/overrides';
10-
115
// React Components
126
@import 'components/icon-and-text';
137
@import 'components/catalog/catalog';
@@ -21,3 +15,6 @@
2115
list-style-type: disc;
2216
}
2317
}
18+
19+
// Overrides
20+
// @import 'style/overrides';

0 commit comments

Comments
 (0)