Skip to content

Commit

Permalink
fix: Font
Browse files Browse the repository at this point in the history
  • Loading branch information
badalkhatri0924 committed Dec 29, 2023
1 parent 4784d17 commit fb1c83c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions apps/web/app/[locale]/kanban/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const Kanban = () => {
onClick={() => {
setActiveTab(KanbanTabs.TODAY);
}}
className={`cursor-pointer pt-2.5 px-5 pb-[30px] text-base ${
className={`cursor-pointer pt-2.5 px-5 pb-[30px] text-base font-semibold ${
activeTab === KanbanTabs.TODAY
? 'border-b-[#3826A6] text-[#3826A6] dark:text-white dark:border-b-white'
: 'border-b-white dark:border-b-[#191A20] dark:text-white text-[#282048]'
Expand All @@ -107,7 +107,7 @@ const Kanban = () => {
onClick={() => {
setActiveTab(KanbanTabs.YESTERDAY);
}}
className={`cursor-pointer pt-2.5 px-5 pb-[30px] text-base ${
className={`cursor-pointer pt-2.5 px-5 pb-[30px] text-base font-semibold ${
activeTab === KanbanTabs.YESTERDAY
? 'border-b-[#3826A6] text-[#3826A6] dark:text-white dark:border-b-white'
: 'border-b-white dark:border-b-[#191A20] dark:text-white text-[#282048]'
Expand All @@ -123,7 +123,7 @@ const Kanban = () => {
onClick={() => {
setActiveTab(KanbanTabs.TOMORROW);
}}
className={`cursor-pointer pt-2.5 px-5 pb-[30px] text-base ${
className={`cursor-pointer pt-2.5 px-5 pb-[30px] text-base font-semibold ${
activeTab === KanbanTabs.TOMORROW
? 'border-b-[#3826A6] text-[#3826A6] dark:text-white dark:border-b-white'
: 'border-b-white dark:border-b-[#191A20] dark:text-white text-[#282048]'
Expand Down
4 changes: 2 additions & 2 deletions apps/web/lib/components/Kanban.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ const KanbanDraggable = ({
type={'TASK'}
content={items}
/>
<div className="flex flex-row items-center text-base not-italic font-semibold rounded-2xl gap-4 bg-white dark:bg-dark--theme-light p-4">
<AddIcon height={20} width={20} />
<div className="flex flex-row items-center text-sm not-italic font-semibold rounded-2xl gap-4 bg-white dark:bg-dark--theme-light p-4">
<AddIcon height={20} width={20} className="dark:stroke-white" />
<p>Create Issues</p>
</div>
</div>
Expand Down

0 comments on commit fb1c83c

Please sign in to comment.