Adjust spaces in upload form on desktops
This commit is contained in:
parent
895be3fff3
commit
90c2a60799
2 changed files with 7 additions and 1 deletions
|
@ -633,7 +633,7 @@ function PublishForm(props: Props) {
|
||||||
|
|
||||||
<Card actions={<SelectThumbnail livestreamdData={livestreamData} />} />
|
<Card actions={<SelectThumbnail livestreamdData={livestreamData} />} />
|
||||||
|
|
||||||
<label>{__('Tags')}</label>
|
<label style={{ marginTop: 'var(--spacing-l)' }}>{__('Tags')}</label>
|
||||||
<TagsSelect
|
<TagsSelect
|
||||||
suggestMature={!SIMPLE_SITE}
|
suggestMature={!SIMPLE_SITE}
|
||||||
disableAutoFocus
|
disableAutoFocus
|
||||||
|
|
|
@ -638,6 +638,12 @@ img {
|
||||||
}
|
}
|
||||||
|
|
||||||
.uploadPage-wraper {
|
.uploadPage-wraper {
|
||||||
|
&.card-stack {
|
||||||
|
.card:not(:last-of-type) {
|
||||||
|
margin-bottom: var(--spacing-l) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.card__main-actions {
|
.card__main-actions {
|
||||||
padding-top: var(--spacing-l);
|
padding-top: var(--spacing-l);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue