mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-12-22 16:29:51 +01:00
Replace styled-components with bulma helpers (#1783)
Use Bulma helpers whenever possible instead of custom styled components. This pull request replaces primarily color definitions, spacing and flex instructions.
This commit is contained in:
@@ -60,9 +60,9 @@ const OverviewPageActions: FC<Props> = ({
|
||||
const link = createAbsoluteLink(inputLink);
|
||||
|
||||
const groupSelector = groups && (
|
||||
<div className={"column is-flex"}>
|
||||
<div className="column is-flex">
|
||||
<Select
|
||||
className={"is-fullwidth"}
|
||||
className="is-fullwidth"
|
||||
options={groups.map((g) => ({ value: g, label: g }))}
|
||||
value={currentGroup}
|
||||
onChange={groupSelected}
|
||||
@@ -89,9 +89,9 @@ const OverviewPageActions: FC<Props> = ({
|
||||
};
|
||||
|
||||
return (
|
||||
<div className={"columns is-tablet"}>
|
||||
<div className="columns is-tablet">
|
||||
{groupSelector}
|
||||
<div className={"column"}>
|
||||
<div className="column">
|
||||
<FilterInput
|
||||
placeholder={searchPlaceholder}
|
||||
value={urls.getQueryStringFromLocation(location)}
|
||||
|
||||
Reference in New Issue
Block a user