mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Use VStack for email layout
This commit is contained in:
parent
2ae920f36d
commit
23944e2d62
1 changed files with 3 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ import {
|
|||
useGetRecentEmailsQuery,
|
||||
} from '../../../lib/networking/queries/useGetRecentEmails'
|
||||
import Link from 'next/link'
|
||||
import { HStack } from '../../../components/elements/LayoutPrimitives'
|
||||
import { HStack, VStack } from '../../../components/elements/LayoutPrimitives'
|
||||
|
||||
export default function RecentEmails(): JSX.Element {
|
||||
const { recentEmails, revalidate, isValidating } = useGetRecentEmailsQuery()
|
||||
|
|
@ -133,7 +133,7 @@ export default function RecentEmails(): JSX.Element {
|
|||
}}
|
||||
deleteTitle="Delete"
|
||||
sublineElement={
|
||||
<HStack>
|
||||
<VStack>
|
||||
<StyledText
|
||||
css={{
|
||||
my: '5px',
|
||||
|
|
@ -165,7 +165,7 @@ export default function RecentEmails(): JSX.Element {
|
|||
recentEmail.createdAt
|
||||
)}, classfied as: ${recentEmail.type}`}
|
||||
</StyledText>
|
||||
</HStack>
|
||||
</VStack>
|
||||
}
|
||||
/>
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue