Fix spinner bug

This commit is contained in:
Leonardo Murça 2022-09-14 16:01:16 -03:00
parent fecf1e9901
commit e2eff9a528

View file

@ -1,7 +1,10 @@
// ========== Desktop ========== // ========== Desktop ==========
const desktopContainer = { const desktopContainer = {
height: 'auto', height: 'auto',
margin: '0 auto', width: '100%',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
padding: '100px 0', padding: '100px 0',
}; };
@ -11,6 +14,7 @@ const desktopPaper = {
justifyContent: 'center', justifyContent: 'center',
color: 'white', color: 'white',
textAlign: 'center', textAlign: 'center',
width: '100%',
}; };
const baseBox = { const baseBox = {
width: '100%', width: '100%',