style(ui): float correspondence inbox and gmail review page wrappers
CI and Deploy / test (push) Successful in 2m48s
CI and Deploy / deploy (push) Successful in 48s

Last two views/*.tsx files not yet covered this session. Same
floating-shadow page-wrapper treatment as every other screen; the
outlined item-row Paper inside each list stays as-is, matching the
established "list rows stay flat/outlined, the page wrapper floats"
convention (same pattern already used for trusted-devices/sessions
list rows).
This commit is contained in:
cesnimda
2026-07-13 14:36:49 +02:00
parent 4d3fdc3526
commit 093f303cdd
2 changed files with 18 additions and 2 deletions
@@ -74,7 +74,15 @@ export default function CorrespondenceInboxPage() {
}, [items]);
return (
<Paper sx={{ mt: 0, p: 2 }}>
<Paper
sx={{
mt: 0,
p: 2,
borderRadius: 4,
border: "none",
boxShadow: "0px 1px 2px 0px rgba(15,23,42,0.04), 0px 8px 24px -12px rgba(15,23,42,0.12)",
}}
>
<Box sx={{ display: "flex", justifyContent: "space-between", gap: 2, alignItems: "center", flexWrap: "wrap", mb: 2 }}>
<Box>
<Typography variant="h5" sx={{ fontWeight: 900 }}>Correspondence inbox</Typography>
+9 -1
View File
@@ -123,7 +123,15 @@ export default function GmailReviewPage() {
}, [data?.threads, routingFilter]);
return (
<Paper sx={{ mt: 0, p: 2 }}>
<Paper
sx={{
mt: 0,
p: 2,
borderRadius: 4,
border: "none",
boxShadow: "0px 1px 2px 0px rgba(15,23,42,0.04), 0px 8px 24px -12px rgba(15,23,42,0.12)",
}}
>
<Box sx={{ display: "flex", justifyContent: "space-between", gap: 2, alignItems: "center", flexWrap: "wrap", mb: 2 }}>
<Box>
<Typography variant="h5" sx={{ fontWeight: 900 }}>Gmail review queue</Typography>