Skip to content

Commit e3ff761

Browse files
Zylphrexandrewshie-sentry
authored andcommitted
styles(explore): Fix spacing between explore toolbar visualize (#83449)
The `+ Add Series` button was too close to the block below so it didn't look quite right. Add some spacing so it's closer to the block above where it adds the series to.
1 parent 2fa31f2 commit e3ff761

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: static/app/views/explore/toolbar/styles.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ export const ToolbarFooterButton = styled(Button)<{disabled?: boolean}>`
3636
color: ${p => (p.disabled ? p.theme.gray300 : p.theme.linkColor)};
3737
`;
3838

39-
export const ToolbarFooter = styled('div')<{disabled?: boolean}>``;
39+
export const ToolbarFooter = styled('div')<{disabled?: boolean}>`
40+
:not(:last-child) {
41+
margin-bottom: ${space(0.5)};
42+
}
43+
`;
4044

4145
export const ToolbarRow = styled('div')`
4246
display: flex;

0 commit comments

Comments
 (0)