aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-03-30 02:20:08 +0000
committerMohamed Bassem <me@mbassem.com>2025-03-30 02:22:45 +0000
commite38be878c2ea2f8019ba1b7ba79c23fccdde5b81 (patch)
tree61454453d4e9d3619e95afed22f05084eab98a6b /apps/web/components/dashboard
parentd86f601f554cc34a189643480619f103c47ad732 (diff)
downloadkarakeep-e38be878c2ea2f8019ba1b7ba79c23fccdde5b81.tar.zst
ui(web): Drop the font weight attribute from sidebar items
Diffstat (limited to 'apps/web/components/dashboard')
-rw-r--r--apps/web/components/dashboard/sidebar/AllLists.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/components/dashboard/sidebar/AllLists.tsx b/apps/web/components/dashboard/sidebar/AllLists.tsx
index 5b4b12bc..f31ced62 100644
--- a/apps/web/components/dashboard/sidebar/AllLists.tsx
+++ b/apps/web/components/dashboard/sidebar/AllLists.tsx
@@ -33,7 +33,7 @@ export default function AllLists({
const [selectedListId, setSelectedListId] = useState<string | null>(null);
return (
- <ul className="max-h-full gap-y-2 overflow-auto text-sm font-medium">
+ <ul className="max-h-full gap-y-2 overflow-auto text-sm">
<li className="flex justify-between pb-2 font-bold">
<p>Lists</p>
<EditListModal>
@@ -99,7 +99,7 @@ export default function AllLists({
<Badge
variant="outline"
className={cn(
- "opacity-100 transition-opacity duration-100 group-hover:opacity-0",
+ "font-normal opacity-100 transition-opacity duration-100 group-hover:opacity-0",
selectedListId == node.item.id ||
numBookmarks === undefined
? "opacity-0"