Skip to content

Commit

Permalink
Fixed padding issues in the toolbar (#18570)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasboilly authored and joshuaellis committed Nov 8, 2023
1 parent 19b6d11 commit 9fbda7a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ const SelectWrapper = styled(Box)`
div[role='combobox'] {
border: none;
cursor: pointer;
min-height: unset;
padding-top: 6px;
padding-bottom: 6px;
&[aria-disabled='false']:hover {
cursor: pointer;
Expand Down Expand Up @@ -660,7 +663,7 @@ const BlocksToolbar = ({ disabled }) => {
<BlocksDropdown disabled={disabled} />
<Separator />
<Toolbar.ToggleGroup type="multiple" asChild>
<Flex gap={1} marginLeft={1}>
<Flex gap={1}>
{Object.entries(modifiers).map(([name, modifier]) => (
<ToolbarButton
key={name}
Expand Down

0 comments on commit 9fbda7a

Please sign in to comment.