diff --git a/pkgs/clan-app/ui/src/components/Sidebar/SidebarSection.tsx b/pkgs/clan-app/ui/src/components/Sidebar/SidebarSection.tsx index 54bdd0b5b..9b5dfeda3 100644 --- a/pkgs/clan-app/ui/src/components/Sidebar/SidebarSection.tsx +++ b/pkgs/clan-app/ui/src/components/Sidebar/SidebarSection.tsx @@ -17,7 +17,6 @@ export const SidebarSection = (props: SidebarSectionProps) => { hierarchy="label" size="xs" family="mono" - weight="light" transform="uppercase" color="tertiary" inverted={true} diff --git a/pkgs/clan-app/ui/src/components/Sidebar/SidebarSectionForm.tsx b/pkgs/clan-app/ui/src/components/Sidebar/SidebarSectionForm.tsx index c320d2086..368d4a2a9 100644 --- a/pkgs/clan-app/ui/src/components/Sidebar/SidebarSectionForm.tsx +++ b/pkgs/clan-app/ui/src/components/Sidebar/SidebarSectionForm.tsx @@ -73,7 +73,6 @@ export function SidebarSectionForm< hierarchy="label" size="xs" family="mono" - weight="light" transform="uppercase" color="tertiary" inverted diff --git a/pkgs/clan-app/ui/src/components/Typography/Typography.css b/pkgs/clan-app/ui/src/components/Typography/Typography.css index 6ff7e88c0..9564c8d3d 100644 --- a/pkgs/clan-app/ui/src/components/Typography/Typography.css +++ b/pkgs/clan-app/ui/src/components/Typography/Typography.css @@ -1,9 +1,5 @@ /* Body */ .typography { - &.weight-light { - font-weight: 300; - } - &.weight-normal { font-weight: 400; } diff --git a/pkgs/clan-app/ui/src/components/Typography/Typography.tsx b/pkgs/clan-app/ui/src/components/Typography/Typography.tsx index 2cd0905c9..38491353b 100644 --- a/pkgs/clan-app/ui/src/components/Typography/Typography.tsx +++ b/pkgs/clan-app/ui/src/components/Typography/Typography.tsx @@ -6,7 +6,7 @@ import { Color, fgClass } from "@/src/components/colors"; export type Tag = "span" | "p" | "h1" | "h2" | "h3" | "h4" | "div"; export type Hierarchy = "body" | "title" | "headline" | "label" | "teaser"; -export type Weight = "normal" | "medium" | "bold" | "light"; +export type Weight = "normal" | "medium" | "bold"; export type Family = "regular" | "condensed" | "mono"; export type Transform = "uppercase" | "lowercase" | "capitalize"; @@ -87,7 +87,6 @@ const weightMap: Record = { normal: "weight-normal", medium: "weight-medium", bold: "weight-bold", - light: "weight-light", }; interface _TypographyProps {