From fc8c6a378b9fba799ca0d244ed1c05dd90f4f018 Mon Sep 17 00:00:00 2001 From: Tony Xiao Date: Tue, 14 Jan 2025 17:04:20 -0500 Subject: [PATCH] styles(explore): Fix spacing between explore toolbar visualize 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. --- static/app/views/explore/toolbar/styles.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/static/app/views/explore/toolbar/styles.tsx b/static/app/views/explore/toolbar/styles.tsx index e82baa3dc3240a..95eac7ba31903d 100644 --- a/static/app/views/explore/toolbar/styles.tsx +++ b/static/app/views/explore/toolbar/styles.tsx @@ -36,7 +36,11 @@ export const ToolbarFooterButton = styled(Button)<{disabled?: boolean}>` color: ${p => (p.disabled ? p.theme.gray300 : p.theme.linkColor)}; `; -export const ToolbarFooter = styled('div')<{disabled?: boolean}>``; +export const ToolbarFooter = styled('div')<{disabled?: boolean}>` + :not(:last-child) { + margin-bottom: ${space(0.5)}; + } +`; export const ToolbarRow = styled('div')` display: flex;