Align pull-down menu to the right in InsertTitles component
This commit is contained in:
@@ -394,11 +394,11 @@ export const InsertTitles: React.FC = () => {
|
|||||||
onClick={collectAndInsertTitles}
|
onClick={collectAndInsertTitles}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div style={{ marginTop: '10px' }}>
|
<div style={{ marginTop: '10px', display: 'flex', justifyContent: 'flex-end' }}>
|
||||||
<select
|
<select
|
||||||
value={titleDetectionMethod}
|
value={titleDetectionMethod}
|
||||||
onChange={(e) => setTitleDetectionMethod(e.target.value as TitleDetectionMethod)}
|
onChange={(e) => setTitleDetectionMethod(e.target.value as TitleDetectionMethod)}
|
||||||
style={{ width: '100%' }}
|
style={{ width: '75%' }}
|
||||||
aria-label="Title detection method"
|
aria-label="Title detection method"
|
||||||
title="Select title detection method"
|
title="Select title detection method"
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user