From 7e84990e49013d2402a0e0ea165f58411a536320 Mon Sep 17 00:00:00 2001 From: Oliver Bryan <04oliverbryan@gmail.com> Date: Sat, 27 Dec 2025 23:31:42 +0000 Subject: [PATCH] font weight classes for tailwind usage --- packages/frontend/src/App.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages/frontend/src/App.css b/packages/frontend/src/App.css index 6b50b17..c3a42e4 100644 --- a/packages/frontend/src/App.css +++ b/packages/frontend/src/App.css @@ -130,3 +130,19 @@ font-weight: 500; font-style: normal; } + +.font-300 { + font-weight: 300; +} +.font-400 { + font-weight: 400; +} +.font-500 { + font-weight: 500; +} +.font-600 { + font-weight: 600; +} +.font-700 { + font-weight: 700; +}