fix: design review comments
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
import { useIntl } from "react-intl"
|
||||
|
||||
import Body from "@/components/TempDesignSystem/Text/Body"
|
||||
|
||||
import Row from "./Row"
|
||||
|
||||
import styles from "./desktop.module.css"
|
||||
@@ -24,7 +26,9 @@ export default function DesktopTable({ lang, transactions }: TableProps) {
|
||||
<tr>
|
||||
{tableHeadings.map((heading) => (
|
||||
<th key={heading} className={styles.th}>
|
||||
{formatMessage({ id: heading })}
|
||||
<Body textTransform="bold">
|
||||
{formatMessage({ id: heading })}
|
||||
</Body>
|
||||
</th>
|
||||
))}
|
||||
</tr>
|
||||
|
||||
@@ -5,7 +5,7 @@ import { serverClient } from "@/lib/trpc/server"
|
||||
|
||||
import Divider from "@/components/TempDesignSystem/Divider"
|
||||
import Link from "@/components/TempDesignSystem/Link"
|
||||
import Title from "@/components/TempDesignSystem/Text/Title"
|
||||
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
||||
import { getIntl } from "@/i18n"
|
||||
|
||||
import styles from "./sidebar.module.css"
|
||||
@@ -21,9 +21,9 @@ export default async function Sidebar({ lang }: LangParams) {
|
||||
return (
|
||||
<aside className={styles.sidebar}>
|
||||
<nav className={styles.nav}>
|
||||
<Title textTransform="regular" level="h5">
|
||||
<Subtitle textTransform="regular" type="two">
|
||||
{navigation.title}
|
||||
</Title>
|
||||
</Subtitle>
|
||||
{navigation.menuItems.map((menuItem, idx) => (
|
||||
<Fragment key={`${menuItem.display_sign_out_link}-${idx}`}>
|
||||
<Divider color="beige" />
|
||||
|
||||
Reference in New Issue
Block a user