CSS modules EVERYWHERE!
This commit is contained in:
parent
6ab4978a03
commit
6b55f1ec72
@ -17,7 +17,7 @@ a {
|
|||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.inline {
|
ul:global(.inline) {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -28,7 +28,7 @@ ul.inline {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.with-separator {
|
&:global(.with-separator) {
|
||||||
& li:after {
|
& li:after {
|
||||||
content: '//';
|
content: '//';
|
||||||
padding: 0 0.5rem;
|
padding: 0 0.5rem;
|
||||||
|
@ -97,31 +97,6 @@ module.exports = {
|
|||||||
exclude: /node_modules/,
|
exclude: /node_modules/,
|
||||||
loader: 'babel-loader'
|
loader: 'babel-loader'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
oneOf: [
|
|
||||||
{
|
|
||||||
test: /\.css$/,
|
|
||||||
exclude: /components/,
|
|
||||||
use: ExtractTextPlugin.extract({
|
|
||||||
fallback: 'style-loader',
|
|
||||||
use: [
|
|
||||||
{
|
|
||||||
loader: 'css-loader',
|
|
||||||
options: {
|
|
||||||
importLoaders: 1,
|
|
||||||
minimize: true,
|
|
||||||
sourceMap: true,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
loader: 'postcss-loader',
|
|
||||||
options: {
|
|
||||||
ident: 'postcss'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
})
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
test: /\.css$/,
|
test: /\.css$/,
|
||||||
use: ExtractTextPlugin.extract({
|
use: ExtractTextPlugin.extract({
|
||||||
@ -145,8 +120,6 @@ module.exports = {
|
|||||||
]
|
]
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
test: /\.svg$/,
|
test: /\.svg$/,
|
||||||
loader: 'svg-react-loader'
|
loader: 'svg-react-loader'
|
||||||
|
@ -43,9 +43,12 @@ module.exports = [
|
|||||||
// Replace the rule for CSS files
|
// Replace the rule for CSS files
|
||||||
{
|
{
|
||||||
test: /\.css$/,
|
test: /\.css$/,
|
||||||
loader: 'css-loader/locals'
|
loader: 'css-loader/locals',
|
||||||
|
options: {
|
||||||
|
modules: true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
...common.module.rules.filter(rule => !rule.oneOf)
|
...common.module.rules.filter(rule => !rule.test.test('file.css'))
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user