idcmd 0.0.9 → 0.0.10
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
CHANGED
package/src/render/layout.tsx
CHANGED
|
@@ -151,7 +151,7 @@ const TopNavbar = ({
|
|
|
151
151
|
<div class="flex items-center gap-4">
|
|
152
152
|
<a
|
|
153
153
|
href="/"
|
|
154
|
-
class="text-sm font-medium tracking-tight font-mono
|
|
154
|
+
class="text-sm font-medium tracking-tight font-mono lg:hidden"
|
|
155
155
|
data-prefetch="hover"
|
|
156
156
|
>
|
|
157
157
|
<span class="text-muted-foreground">~/</span>
|
|
@@ -104,7 +104,7 @@ const TopNavbar = ({
|
|
|
104
104
|
<div class="flex items-center gap-4">
|
|
105
105
|
<a
|
|
106
106
|
href="/"
|
|
107
|
-
class="text-sm font-mono font-medium tracking-tight
|
|
107
|
+
class="text-sm font-mono font-medium tracking-tight lg:hidden"
|
|
108
108
|
data-prefetch="hover"
|
|
109
109
|
>
|
|
110
110
|
<span class="text-muted-foreground">~/</span>
|
|
@@ -151,7 +151,7 @@ header {
|
|
|
151
151
|
display: none;
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
-
@media (min-width:
|
|
154
|
+
@media (min-width: 1024px) {
|
|
155
155
|
.sidebar {
|
|
156
156
|
position: fixed;
|
|
157
157
|
top: 0;
|
|
@@ -185,7 +185,7 @@ header {
|
|
|
185
185
|
flex-direction: column;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
@media (min-width:
|
|
188
|
+
@media (min-width: 1024px) {
|
|
189
189
|
.main-wrapper {
|
|
190
190
|
margin-left: var(--sidebar-width);
|
|
191
191
|
}
|