Skip to content

Commit 7c60d3c

Browse files
authored
chore(explore): minor form width tweak and reduce margins (#83662)
Giving a bit more space back to the table **Before:** ![Screenshot 2025-01-17 at 10 44 43 AM](https://github.com/user-attachments/assets/0628bcc0-ff84-469e-8f04-54b3ed104141) **After:** ![Screenshot 2025-01-17 at 10 44 21 AM](https://github.com/user-attachments/assets/50026ee4-6e93-4547-8921-5186b8cad846)
1 parent 31a894a commit 7c60d3c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

static/app/views/explore/content.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ const Body = styled(Layout.Body)`
311311
gap: ${space(2)};
312312
313313
@media (min-width: ${p => p.theme.breakpoints.medium}) {
314-
grid-template-columns: 350px minmax(100px, auto);
314+
grid-template-columns: 300px minmax(100px, auto);
315315
gap: ${space(2)};
316316
}
317317
@@ -327,7 +327,7 @@ const TopSection = styled('div')`
327327
margin-bottom: ${space(2)};
328328
329329
@media (min-width: ${p => p.theme.breakpoints.large}) {
330-
grid-template-columns: minmax(350px, auto) 1fr;
330+
grid-template-columns: minmax(300px, auto) 1fr;
331331
margin-bottom: 0;
332332
}
333333

static/app/views/explore/toolbar/toolbarSuggestedQueries.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,5 +339,5 @@ const SuggestedQueriesContainer = styled('div')`
339339
display: flex;
340340
flex-wrap: wrap;
341341
gap: ${space(1)};
342-
margin-top: ${space(2)};
342+
margin-top: ${space(1)};
343343
`;

0 commit comments

Comments
 (0)