1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 11:24:35 +00:00

Merge pull request #358 from sasjs/css-issue-fix

Css issue fix
This commit is contained in:
Yury Shkoda
2023-04-28 14:46:12 +03:00
committed by GitHub
2 changed files with 9 additions and 1 deletions

View File

@@ -149,6 +149,9 @@ const LogChunk = (props: LogChunkProps) => {
style={{
display: expanded ? 'block' : 'none'
}}
onClick={(evt) => {
evt.stopPropagation()
}}
>
<div
id={`log_container`}

View File

@@ -32,7 +32,12 @@ const config: Configuration = {
]
},
{
test: /\.css$/i,
test: /\.css$/,
exclude: ['/node_modules/', /\.module\.css$/],
use: ['style-loader', 'css-loader']
},
{
test: /\.module\.css$/i,
use: [
'style-loader',
{