react-os-shell 0.3.7 → 0.3.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/dist/index.js CHANGED
@@ -915,7 +915,7 @@ function StatusBadge({ status }) {
915
915
  }
916
916
 
917
917
  // src/version.ts
918
- var VERSION = "0.3.7" ;
918
+ var VERSION = "0.3.8" ;
919
919
  var APP_VERSION = VERSION;
920
920
 
921
921
  // src/changelog.ts
@@ -4230,10 +4230,10 @@ function Layout({
4230
4230
  root.style.setProperty("--active-header-opacity", String(activeHeaderOpacity));
4231
4231
  root.style.setProperty("--active-content-opacity", String(activeContentOpacity));
4232
4232
  root.style.setProperty("--menu-opacity", String(menuOpacity));
4233
- root.style.setProperty("--taskbar-height", String(taskbarH));
4234
- root.style.setProperty("--taskbar-width", String(taskbarW));
4233
+ root.style.setProperty("--taskbar-height", `${taskbarH}px`);
4234
+ root.style.setProperty("--taskbar-width", `${taskbarW}px`);
4235
4235
  root.style.setProperty("--taskbar-position", taskbarPosition);
4236
- root.style.setProperty("--sidebar-width", String(sidebarWidth));
4236
+ root.style.setProperty("--sidebar-width", `${sidebarWidth}px`);
4237
4237
  root.style.setProperty("--layout-mode", layoutMode);
4238
4238
  window.dispatchEvent(new CustomEvent("react-os-shell:layout-mode-changed"));
4239
4239
  root.style.setProperty("--default-window-size", prefs.default_window_size || "large");