nice heading above uploadfield

10G upload limit for nginx config
This commit is contained in:
2021-09-23 20:16:09 +02:00
parent afaad81849
commit 156aaa7a71
5 changed files with 18 additions and 8 deletions

View File

@ -11,3 +11,9 @@
padding: 10px;
width: 40%;
}
.uploadtext {
font-size: x-large;
margin-top: 30px;
margin-bottom: 10px;
}

View File

@ -3,6 +3,7 @@ import style from './MovieSettings.module.css';
import {APINode, callAPI} from '../../utils/Api';
import {GeneralSuccess} from '../../types/GeneralTypes';
import {DropZone} from '../../elements/DropZone/DropZone';
import GlobalInfos from '../../utils/GlobalInfos';
interface state {
text: string[];
@ -100,6 +101,8 @@ class MovieSettings extends React.Component<Props, state> {
}
render(): JSX.Element {
const theme = GlobalInfos.getThemeStyle();
return (
<>
<button
@ -124,7 +127,10 @@ class MovieSettings extends React.Component<Props, state> {
</div>
))}
</div>
<DropZone />
<div className={theme.textcolor}>
<div className={style.uploadtext}>Video Upload:</div>
<DropZone />
</div>
</>
);
}