Skip to content

Commit

Permalink
remove line height and undo ascend descend
Browse files Browse the repository at this point in the history
  • Loading branch information
doralchan committed Sep 25, 2024
1 parent cf0fb5f commit 40f78f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions static/app/views/explore/toolbar/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export const ToolbarLabel = styled('h6')<{disabled?: boolean}>`
height: ${p => p.theme.form.md.height};
min-height: ${p => p.theme.form.md.minHeight};
font-size: ${p => p.theme.form.md.fontSize};
line-height: ${p => p.theme.form.md.lineHeight};
text-decoration: underline dotted
${p => (p.disabled ? p.theme.gray300 : p.theme.gray300)};
margin: 0;
Expand All @@ -40,5 +39,5 @@ export const ToolbarRow = styled('div')`
display: flex;
flex-direction: row;
gap: ${space(1)};
margin: ${space(1)} 0;
margin-bottom: ${space(1)};
`;
4 changes: 2 additions & 2 deletions static/app/views/explore/toolbar/toolbarSortBy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ export function ToolbarSortBy({fields, setSorts, sorts}: ToolbarSortByProps) {
const kindOptions: SelectOption<Sort['kind']>[] = useMemo(() => {
return [
{
label: 'desc',
label: 'Desc',
value: 'desc',
},
{
label: 'asc',
label: 'Asc',
value: 'asc',
},
];
Expand Down

0 comments on commit 40f78f8

Please sign in to comment.