diff --git a/src/components/EmptyState.tsx b/src/components/EmptyState.tsx index ef5f919b..8ae492e5 100644 --- a/src/components/EmptyState.tsx +++ b/src/components/EmptyState.tsx @@ -71,6 +71,7 @@ export default function EmptyState({ sx={{ maxWidth: "25em", px: 2, + typography: "body2", "& .icon": { color: "action.active", diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index d7f2c5e0..c3d2e574 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -14,6 +14,7 @@ import { Checkbox, IconButton, Zoom, + Fade, } from "@material-ui/core"; import ViewListIcon from "@material-ui/icons/ViewListOutlined"; import ViewGridIcon from "@material-ui/icons/ViewModuleOutlined"; @@ -89,7 +90,13 @@ export default function HomePage() { ); if (!Array.isArray(tables)) - return view === "list" ? : ; + return ( + +
+ {view === "list" ? : } +
+
+ ); if (settingsDocState.error?.code === "permission-denied") return ; diff --git a/src/pages/Settings/ProjectSettings.tsx b/src/pages/Settings/ProjectSettings.tsx index 49bdca2e..91c7683f 100644 --- a/src/pages/Settings/ProjectSettings.tsx +++ b/src/pages/Settings/ProjectSettings.tsx @@ -1,4 +1,4 @@ -import { Container, Stack } from "@material-ui/core"; +import { Container, Stack, Fade } from "@material-ui/core"; import SettingsSkeleton from "components/Settings/SettingsSkeleton"; import SettingsSection from "components/Settings/SettingsSection"; @@ -71,11 +71,13 @@ export default function ProjectSettingsPage() { return ( {settingsState.loading || publicSettingsState.loading ? ( - - - - - + + + + + + + ) : ( diff --git a/src/pages/Settings/UserManagement.tsx b/src/pages/Settings/UserManagement.tsx index 7cf02ccf..98934ea2 100644 --- a/src/pages/Settings/UserManagement.tsx +++ b/src/pages/Settings/UserManagement.tsx @@ -1,4 +1,11 @@ -import { Container, Stack, Typography, Paper, List } from "@material-ui/core"; +import { + Container, + Stack, + Typography, + Paper, + List, + Fade, +} from "@material-ui/core"; import FloatingSearch from "components/FloatingSearch"; import SlideTransition from "components/Modal/SlideTransition"; @@ -61,13 +68,15 @@ export default function UserManagementPage() { {loading || (query === "" && results.length === 0) ? ( - - - - - - - + + + + + + + + + ) : (