feat: modify invite page & 404 page (#1097)

This commit is contained in:
Qi
2023-02-17 17:44:48 +08:00
committed by GitHub
parent 5e6366ba44
commit 67fe1871da
26 changed files with 926 additions and 501 deletions
+14
View File
@@ -0,0 +1,14 @@
import { displayFlex, styled } from '../../styles';
export const StyledEmptyContainer = styled.div(() => {
return {
height: '100%',
...displayFlex('center', 'center'),
flexDirection: 'column',
'.empty-img': {
width: '320px',
height: '280px',
},
};
});