fix(frontend): center text in movie auto-approve modal on small screens (#510)

fix #507
This commit is contained in:
Danshil Mungur
2020-12-27 13:20:58 +04:00
committed by GitHub
parent 0185bb1a70
commit 1438b08cf0

View File

@@ -168,7 +168,7 @@ const MovieRequestModal: React.FC<RequestModalProps> = ({
okButtonType={'primary'}
iconSvg={<DownloadIcon className="w-6 h-6" />}
>
{text}
<p className="text-center md:text-left">{text}</p>
</Modal>
);
};