@stevederico/skateboard-ui 1.3.7 → 1.3.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/CHANGELOG.md +11 -0
- package/SettingsView.jsx +1 -2
- package/package.json +1 -1
- package/styles.css +8 -0
package/CHANGELOG.md
CHANGED
package/SettingsView.jsx
CHANGED
|
@@ -15,7 +15,6 @@ import {
|
|
|
15
15
|
AlertDialogTitle,
|
|
16
16
|
AlertDialogTrigger,
|
|
17
17
|
} from './shadcn/ui/alert-dialog.jsx';
|
|
18
|
-
import pkg from '@package';
|
|
19
18
|
import { showCheckout, showManage } from './Utilities';
|
|
20
19
|
|
|
21
20
|
export default function SettingsView() {
|
|
@@ -145,7 +144,7 @@ export default function SettingsView() {
|
|
|
145
144
|
|
|
146
145
|
{/* Footer */}
|
|
147
146
|
<div className="mt-8 text-center pb-24 md:pb-8">
|
|
148
|
-
<div className="text-xs text-muted-foreground">v{
|
|
147
|
+
<div className="text-xs text-muted-foreground">v{constants.version || '0.0.0'}</div>
|
|
149
148
|
</div>
|
|
150
149
|
</div>
|
|
151
150
|
</div>
|
package/package.json
CHANGED
package/styles.css
CHANGED
|
@@ -154,6 +154,14 @@
|
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
+
/* Sidebar rail override - use transition-colors instead of transition-all */
|
|
158
|
+
button[data-sidebar="rail"] {
|
|
159
|
+
transition-property: color, background-color, border-color !important;
|
|
160
|
+
}
|
|
161
|
+
button[data-sidebar="rail"]::after {
|
|
162
|
+
transition-property: color, background-color, border-color !important;
|
|
163
|
+
}
|
|
164
|
+
|
|
157
165
|
@layer base {
|
|
158
166
|
:root {
|
|
159
167
|
--sidebar-background: 0 0% 98%;
|