mirror of
https://github.com/mediacms-io/mediacms.git
synced 2026-01-24 09:03:00 -05:00
Remove vertical aspect ratios from embed options
The aspect ratio dropdown in MediaShareEmbed now only includes horizontal orientation options (16:9, 4:3, 3:2) and the custom option. Vertical orientation options have been removed to simplify the selection.
This commit is contained in:
@@ -363,16 +363,9 @@ export function MediaShareEmbed(props) {
|
|||||||
value={aspectRatio}
|
value={aspectRatio}
|
||||||
style={{ height: '28px', fontSize: '12px' }}
|
style={{ height: '28px', fontSize: '12px' }}
|
||||||
>
|
>
|
||||||
<optgroup label="Horizontal orientation">
|
<option value="16:9">16:9</option>
|
||||||
<option value="16:9">16:9</option>
|
<option value="4:3">4:3</option>
|
||||||
<option value="4:3">4:3</option>
|
<option value="3:2">3:2</option>
|
||||||
<option value="3:2">3:2</option>
|
|
||||||
</optgroup>
|
|
||||||
<optgroup label="Vertical orientation">
|
|
||||||
<option value="9:16">9:16</option>
|
|
||||||
<option value="3:4">3:4</option>
|
|
||||||
<option value="2:3">2:3</option>
|
|
||||||
</optgroup>
|
|
||||||
<option value="custom">Custom</option>
|
<option value="custom">Custom</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user