Skip to content

Commit fbda304

Browse files
authored
Merge pull request #2 from Mentra-Community/dev
fat hit box
2 parents 532784d + f73e02d commit fbda304

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

figma-design/src/app/views/FolderList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ export const FolderList: React.FC<FolderListProps> = ({
280280
<div className="flex items-center justify-between">
281281
<button
282282
onClick={() => setIsFilterOpen(true)}
283-
className="flex items-center gap-1.5 group -ml-2 px-2 py-1 rounded-lg hover:bg-zinc-50 dark:hover:bg-zinc-800/50 transition-colors"
283+
className="flex items-center gap-1.5 group -ml-2 px-2 py-1 min-h-11 rounded-lg hover:bg-zinc-50 dark:hover:bg-zinc-800/50 transition-colors"
284284
>
285285
<h1 className="text-xl font-normal text-zinc-900 dark:text-white tracking-tight">
286286
{activeFilter === 'all' ? 'All Files' :

src/backend/NotesApp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export class NotesApp extends AppServer {
9999
// Show initial ready state
100100
setTimeout(() => {
101101
if (notesSession.settings.showLiveTranscript) {
102-
session.dashboard.content.write("📝 Notes - Recording");
102+
session.dashboard.content.write("Notes - Recording");
103103
}
104104
}, 2000);
105105

src/frontend/pages/home/HomePage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export function HomePage() {
201201
<div className="flex items-center justify-between">
202202
<button
203203
onClick={() => setIsFilterOpen(true)}
204-
className="flex items-center gap-1.5 group -ml-2 px-2 py-1 rounded-lg hover:bg-zinc-50 dark:hover:bg-zinc-800/50 transition-colors"
204+
className="flex items-center gap-1.5 group -ml-2 px-2 py-1 min-h-11 rounded-lg hover:bg-zinc-50 dark:hover:bg-zinc-800/50 transition-colors"
205205
>
206206
<h1 className="text-xl font-normal text-zinc-900 dark:text-white tracking-tight">
207207
{getFilterLabel()}
@@ -286,7 +286,7 @@ export function HomePage() {
286286
<div className="flex items-center justify-between">
287287
<button
288288
onClick={() => setIsFilterOpen(true)}
289-
className="flex items-center gap-1.5 group -ml-2 px-2 py-1 rounded-lg hover:bg-zinc-50 dark:hover:bg-zinc-800/50 transition-colors"
289+
className="flex items-center gap-1.5 group -ml-2 px-2 py-1 min-w-31 rounded-lg hover:bg-zinc-50 dark:hover:bg-zinc-800/50 transition-colors"
290290
>
291291
<h1 className="text-xl font-normal text-zinc-900 dark:text-white tracking-tight">
292292
{getFilterLabel()}

src/frontend/pages/note/NotePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export function NotePage() {
239239
<div className="p-4 border-b border-zinc-200 dark:border-zinc-800">
240240
<button
241241
onClick={() => setLocation("/")}
242-
className="p-2 -ml-2 rounded-lg hover:bg-zinc-100 dark:hover:bg-zinc-900 text-zinc-600 dark:text-zinc-400 transition-colors"
242+
className="p-2 -ml-2 min-w-11 min-h-11 flex items-center justify-center rounded-lg hover:bg-zinc-100 dark:hover:bg-zinc-900 text-zinc-600 dark:text-zinc-400 transition-colors"
243243
>
244244
<ChevronLeft size={24} />
245245
</button>

src/frontend/pages/settings/SettingsPage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export function SettingsPage() {
188188
<div className="flex items-center">
189189
<button
190190
onClick={handleBack}
191-
className="p-2 -ml-2 rounded-lg hover:bg-zinc-100 dark:hover:bg-zinc-900 text-zinc-600 dark:text-zinc-400 transition-colors md:hidden"
191+
className="p-2 -ml-2 min-w-11 min-h-11 flex items-center justify-center rounded-lg hover:bg-zinc-100 dark:hover:bg-zinc-900 text-zinc-600 dark:text-zinc-400 transition-colors md:hidden"
192192
>
193193
<ChevronLeft size={24} />
194194
</button>
@@ -202,7 +202,7 @@ export function SettingsPage() {
202202
<div className="flex-1 overflow-y-auto">
203203
<div className="px-4 md:px-6 pb-24">
204204
{/* General Section */}
205-
<div className="mt-6 mb-2">
205+
{/* <div className="mt-6 mb-2">
206206
<h3 className="text-xs font-semibold text-zinc-500 dark:text-zinc-400 uppercase tracking-wider mb-2">
207207
General
208208
</h3>
@@ -218,7 +218,7 @@ export function SettingsPage() {
218218
type="link"
219219
onClick={() => {}}
220220
/>
221-
</div>
221+
</div> */}
222222

223223
{/* Recording Section */}
224224
<div className="mt-8 mb-2">

0 commit comments

Comments
 (0)