Skip to content

Commit 5958b5b

Browse files
chore: change fonts
1 parent f42f66f commit 5958b5b

File tree

11 files changed

+80
-14
lines changed

11 files changed

+80
-14
lines changed

public/fonts/nunito-300.ttf

123 KB
Binary file not shown.

public/fonts/nunito-400.ttf

123 KB
Binary file not shown.

public/fonts/nunito-500.ttf

123 KB
Binary file not shown.

public/fonts/nunito-600.ttf

123 KB
Binary file not shown.

public/fonts/nunito-700.ttf

123 KB
Binary file not shown.

public/fonts/nunito-800.ttf

122 KB
Binary file not shown.

public/fonts/nunito.css

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
@font-face {
2+
font-family: 'Nunito';
3+
font-style: normal;
4+
font-weight: 300;
5+
font-display: swap;
6+
src: url('/fonts/nunito-300.ttf') format('truetype');
7+
}
8+
9+
@font-face {
10+
font-family: 'Nunito';
11+
font-style: normal;
12+
font-weight: 400;
13+
font-display: swap;
14+
src: url('/fonts/nunito-400.ttf') format('truetype');
15+
}
16+
17+
@font-face {
18+
font-family: 'Nunito';
19+
font-style: normal;
20+
font-weight: 500;
21+
font-display: swap;
22+
src: url('/fonts/nunito-500.ttf') format('truetype');
23+
}
24+
25+
@font-face {
26+
font-family: 'Nunito';
27+
font-style: normal;
28+
font-weight: 600;
29+
font-display: swap;
30+
src: url('/fonts/nunito-600.ttf') format('truetype');
31+
}
32+
33+
@font-face {
34+
font-family: 'Nunito';
35+
font-style: normal;
36+
font-weight: 700;
37+
font-display: swap;
38+
src: url('/fonts/nunito-700.ttf') format('truetype');
39+
}
40+
41+
@font-face {
42+
font-family: 'Nunito';
43+
font-style: normal;
44+
font-weight: 800;
45+
font-display: swap;
46+
src: url('/fonts/nunito-800.ttf') format('truetype');
47+
}

src/Options.vue

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,26 @@
88
</div>
99
<div class="h-screen w-full relative z-10">
1010
<div class="navbar bg-base-200">
11-
<div class="navbar-start">
12-
<label
13-
class="btn btn-circle swap swap-rotate drawer-button lg:hidden"
14-
for="drawer-menu"
15-
>
16-
<input type="checkbox" />
17-
<BurgerIcon />
18-
<CloseIcon />
19-
</label>
20-
21-
<h1 class="text-xl font-semibold ml-4">
22-
{{ currentContent.title }}
23-
</h1>
11+
<div class="navbar-start flex-col items-start gap-0">
12+
<div class="flex items-center w-full">
13+
<label
14+
class="btn btn-circle swap swap-rotate drawer-button lg:hidden"
15+
for="drawer-menu"
16+
>
17+
<input type="checkbox" />
18+
<BurgerIcon />
19+
<CloseIcon />
20+
</label>
21+
22+
<div class="ml-4">
23+
<h1 class="text-lg font-semibold">
24+
{{ currentContent.title }}
25+
</h1>
26+
<p v-if="currentContent.description" class="text-xs text-base-content/60">
27+
{{ currentContent.description }}
28+
</p>
29+
</div>
30+
</div>
2431
</div>
2532

2633
<div class="navbar-end mr-2">
@@ -101,26 +108,31 @@ const sectionItems = [
101108
{
102109
title: 'Rules',
103110
emoji: '📋',
111+
description: 'Customize tabs based on URL patterns',
104112
component: 'TabRulesPane',
105113
},
106114
{
107115
title: 'Groups',
108116
emoji: '🗂️',
117+
description: 'Organize your tabs with custom groups',
109118
component: 'TabGroupsPane',
110119
},
111120
{
112121
title: 'Tab Hive',
113122
emoji: '🍯',
123+
description: 'Manage closed tabs and auto-close settings',
114124
component: 'TabHivePane',
115125
},
116126
{
117127
title: 'Settings',
118128
emoji: '⚙️',
129+
description: 'Configure performance and preferences',
119130
component: 'SettingsPane',
120131
},
121132
{
122133
title: 'Help',
123134
emoji: '',
135+
description: 'Learn how to use Tabee features',
124136
component: 'HelpPane',
125137
},
126138
] as MenuItem[];

src/common/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { DefineComponent } from 'vue';
33
export type MenuItem = {
44
title: string;
55
emoji: string;
6+
description?: string;
67
component?: string;
78
link?: string;
89
};

src/style.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@import url('/fonts/nunito.css');
2+
13
@tailwind base;
24
@tailwind components;
35

0 commit comments

Comments
 (0)