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 committed Oct 31, 2023
1 parent db0360a commit ed78895
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 ed78895

Please sign in to comment.