We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf36e0 commit 967fe47Copy full SHA for 967fe47
apps/builder/app/builder/features/topbar/topbar.tsx
@@ -46,18 +46,17 @@ const PagesButton = () => {
46
}
47
>
48
<ToolbarButton
49
- css={{
50
- paddingInline: theme.panel.paddingInline,
51
- maxWidth: theme.spacing[24],
52
- }}
+ css={{ paddingInline: theme.panel.paddingInline }}
53
aria-label="Toggle Pages"
54
onClick={(event) => {
55
$editingPageId.set(event.altKey ? page.id : undefined);
56
toggleActiveSidebarPanel("pages");
57
}}
58
tabIndex={0}
59
60
- <Text truncate>{page.name}</Text>
+ <Text truncate css={{ maxWidth: theme.spacing[24] }}>
+ {page.name}
+ </Text>
61
</ToolbarButton>
62
</Tooltip>
63
);
0 commit comments