Skip to content

Commit

Permalink
search dropdown: add flex to button content
Browse files Browse the repository at this point in the history
  • Loading branch information
jennur authored and zzacharo committed Aug 2, 2023
1 parent b340cb5 commit 1196d35
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class DropdownSort extends Component {
labeled
item
trigger={
<span>
<span className="flex align-items-center">
{this.getCurrentlySelectedOption(parsedOptions).text}
<Icon name="dropdown" />
</span>
Expand All @@ -72,7 +72,7 @@ export class DropdownSort extends Component {
selectOnNavigation={selectOnNavigation}
selectOnBlur={false}
size="large"
className="icon fluid-responsive"
className="icon fluid-mobile"
/>
);
}
Expand Down Expand Up @@ -124,7 +124,7 @@ export class DropdownFilter extends Component {
item
button
trigger={
<span>
<span className="flex align-items-center">
{filterLabel}
<Icon name="dropdown" />
</span>
Expand All @@ -134,7 +134,7 @@ export class DropdownFilter extends Component {
selectOnBlur={false}
value={null}
loading={loading}
className="icon fluid-responsive"
className="icon fluid-mobile"
{...uiProps}
/>
);
Expand Down

0 comments on commit 1196d35

Please sign in to comment.