Skip to content

Commit

Permalink
Make button content left aligned for short tag names
Browse files Browse the repository at this point in the history
  • Loading branch information
caleballdrin committed Dec 12, 2024
1 parent 3cac36c commit c905a0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ interface MassActionsRemoveTagsModalProps {
const ExistingTagButton = styled(Button)(() => ({
textTransform: 'none',
width: 'fit-content',
justifyContent: 'left',
}));

const SelectedTagButton = styled(Button)(() => ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ const NewTagInstructions = styled(Typography)(() => ({
const ExistingTagButton = styled(Button)(() => ({
textTransform: 'none',
width: 'fit-content',
justifyContent: 'left',
}));

const AddTagIcon = styled(Add)(() => ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ interface MassActionsTasksRemoveTagsModalProps {
const ExistingTagButton = styled(Button)(() => ({
textTransform: 'none',
width: 'fit-content',
justifyContent: 'left',
}));

const SelectedTagButton = styled(Button)(() => ({
Expand Down

0 comments on commit c905a0b

Please sign in to comment.