@jupyterlab/launcher 3.4.7 → 3.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/style/base.css +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/launcher",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.8",
|
|
4
4
|
"description": "JupyterLab - Launcher Panel",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"watch": "tsc -b --watch"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@jupyterlab/apputils": "^3.4.
|
|
40
|
-
"@jupyterlab/translation": "^3.4.
|
|
41
|
-
"@jupyterlab/ui-components": "^3.4.
|
|
39
|
+
"@jupyterlab/apputils": "^3.4.8",
|
|
40
|
+
"@jupyterlab/translation": "^3.4.8",
|
|
41
|
+
"@jupyterlab/ui-components": "^3.4.8",
|
|
42
42
|
"@lumino/algorithm": "^1.9.0",
|
|
43
43
|
"@lumino/commands": "^1.19.0",
|
|
44
44
|
"@lumino/coreutils": "^1.11.0",
|
package/style/base.css
CHANGED
|
@@ -171,6 +171,9 @@
|
|
|
171
171
|
.jp-Launcher-kernelIcon {
|
|
172
172
|
width: var(--jp-private-launcher-large-icon-size);
|
|
173
173
|
height: var(--jp-private-launcher-large-icon-size);
|
|
174
|
-
margin:
|
|
175
|
-
padding:
|
|
174
|
+
margin: 0;
|
|
175
|
+
padding: 0;
|
|
176
|
+
|
|
177
|
+
/* Preserve image aspect ratio */
|
|
178
|
+
object-fit: contain;
|
|
176
179
|
}
|