Skip to content

Commit 425b27d

Browse files
fix: shortened sidebar width
1 parent e871141 commit 425b27d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

desk/src/stores/sidebar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const useSidebarStore = defineStore("sidebar", () => {
66
const isOpen = ref(true);
77
const isExpanded = useStorage("sidebar_is_expanded", true);
88
const width = computed(() => {
9-
return isExpanded.value ? "256px" : "50px";
9+
return isExpanded.value ? "224px" : "50px";
1010
});
1111

1212
function toggle(state?: boolean) {

0 commit comments

Comments
 (0)