Skip to content

Commit 980d4fa

Browse files
authored
fix: operations kind button width (#1521)
1 parent e27749a commit 980d4fa

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.operations {
2+
&__search {
3+
width: 220px;
4+
}
5+
}

src/containers/Operations/OperationsControls.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import {OPERATION_KINDS} from './constants';
1010
import i18n from './i18n';
1111
import {b} from './shared';
1212

13+
import './Operations.scss';
14+
1315
interface OperationsControlsProps {
1416
kind: OperationKind;
1517
searchValue: string;
@@ -39,6 +41,7 @@ export function OperationsControls({
3941
/>
4042
<Select
4143
value={[kind]}
44+
width={150}
4245
options={OPERATION_KINDS}
4346
onUpdate={(value) => handleKindChange(value[0] as OperationKind)}
4447
/>

0 commit comments

Comments
 (0)