@stevederico/skateboard-ui 0.5.8 → 0.5.9
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/AppSidebar.jsx +1 -1
- package/README.md +2 -1
- package/package.json +1 -1
package/AppSidebar.jsx
CHANGED
|
@@ -38,7 +38,7 @@ export default function AppSidebar() {
|
|
|
38
38
|
<Sidebar collapsible="icon" className="min-w-[40px]">
|
|
39
39
|
<SidebarHeader className="p-0">
|
|
40
40
|
<SidebarMenu>
|
|
41
|
-
<div className={`flex flex-row m-2 mt-
|
|
41
|
+
<div className={`flex flex-row m-2 mt-4 mb-4 items-center ${open ? "ml-4" : "justify-center ml-2"}`}>
|
|
42
42
|
<div className="bg-app dark:border rounded-lg flex aspect-square size-10 items-center justify-center">
|
|
43
43
|
<DynamicIconComponent
|
|
44
44
|
name={constants.appIcon}
|
package/README.md
CHANGED