Adjust spaces in upload form on desktops

This commit is contained in:
toshikanneko 2022-02-14 12:21:35 +01:00
parent 895be3fff3
commit 90c2a60799
2 changed files with 7 additions and 1 deletions

View file

@ -633,7 +633,7 @@ function PublishForm(props: Props) {
<Card actions={<SelectThumbnail livestreamdData={livestreamData} />} />
<label>{__('Tags')}</label>
<label style={{ marginTop: 'var(--spacing-l)' }}>{__('Tags')}</label>
<TagsSelect
suggestMature={!SIMPLE_SITE}
disableAutoFocus

View file

@ -638,6 +638,12 @@ img {
}
.uploadPage-wraper {
&.card-stack {
.card:not(:last-of-type) {
margin-bottom: var(--spacing-l) !important;
}
}
.card__main-actions {
padding-top: var(--spacing-l);
}