refactor(studio): simplify preview workspace layout

This commit is contained in:
ukimsanov
2026-07-24 18:42:49 -07:00
parent d5c7d3ee16
commit bf47416e14
13 changed files with 235 additions and 474 deletions
@@ -153,10 +153,8 @@ export const ShortcutsPanel = memo(function ShortcutsPanel({
<button
type="button"
onClick={() => setShowShortcuts((v) => !v)}
className={`w-6 h-6 flex items-center justify-center rounded border transition-colors ${
showShortcuts
? "border-neutral-600 text-neutral-200 bg-neutral-800"
: "border-neutral-800 text-neutral-600 hover:text-neutral-300 hover:border-neutral-600"
className={`flex h-7 w-7 items-center justify-center rounded-md transition-colors ${
showShortcuts ? "text-neutral-200" : "text-neutral-600 hover:text-neutral-300"
}`}
aria-label="Shortcuts and tools"
aria-expanded={showShortcuts}