Skip to content

Commit

Permalink
larger btn and smaller sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
doralchan committed Sep 26, 2024
1 parent 2abe247 commit ad8d510
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions static/app/views/explore/charts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export function ExploreCharts({query}: ExploreChartsProps) {
<ChartSettingsContainer>
<CompactSelect
size="xs"
triggerProps={{prefix: t('Display')}}
triggerProps={{prefix: t('Type')}}
value={chartType}
options={exploreChartTypeOptions}
onChange={option => handleChartTypeChange(option.value, index)}
Expand Down Expand Up @@ -173,7 +173,7 @@ const ChartContainer = styled('div')`
display: grid;
gap: 0;
grid-template-columns: 1fr;
margin-bottom: ${space(3)};
margin-bottom: ${space(2)};
`;

const ChartHeader = styled('div')`
Expand Down
4 changes: 2 additions & 2 deletions static/app/views/explore/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ const FilterActions = styled('div')`
const Body = styled(Layout.Body)`
@media (min-width: ${p => p.theme.breakpoints.large}) {
display: grid;
grid-template-columns: 300px minmax(100px, auto);
grid-template-columns: 280px minmax(100px, auto);
align-content: start;
gap: ${p => (!p.noRowGap ? `${space(3)}` : `0 ${space(3)}`)};
gap: ${p => (!p.noRowGap ? `${space(2)}` : `0 ${space(2)}`)};
}
`;

Expand Down
3 changes: 1 addition & 2 deletions static/app/views/explore/tables/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ function ExploreSamplesTable() {
</TabList>
</Tabs>
<Button
size="sm"
disabled={tab !== Tab.SPAN}
onClick={openColumnEditor}
icon={<IconTable />}
Expand All @@ -86,5 +85,5 @@ const SamplesTableHeader = styled('div')`
display: flex;
flex-direction: row;
justify-content: space-between;
margin-bottom: ${space(1)};
margin-bottom: ${space(2)};
`;

0 comments on commit ad8d510

Please sign in to comment.