Skip to content

Commit 16360da

Browse files
Dev/ianhu/variable explorer styles (#5106)
Pass one of getting variable explorer to look like VSCode
1 parent 531cb00 commit 16360da

14 files changed

+895
-20
lines changed

build/webpack/webpack.datascience-ui.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,14 @@ const config = {
8181
options: {}
8282
}
8383
]
84+
},
85+
{
86+
test: /\.scss$/,
87+
use: [
88+
'style-loader',
89+
'css-loader',
90+
'sass-loader'
91+
]
8492
}
8593
]
8694
}

build/webpack/webpack.datascience-ui.config.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,14 @@ const config: webpack.Configuration = {
8787
options: {}
8888
}
8989
]
90+
},
91+
{
92+
test: /\.scss$/,
93+
use: [
94+
'style-loader',
95+
'css-loader',
96+
'sass-loader'
97+
]
9098
}
9199
]
92100
}

news/1 Enhancements/4998.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Pass one at getting our data grid styled correctly to match vscode styles and the spec

0 commit comments

Comments
 (0)