Skip to content

Commit 1d0340e

Browse files
committed
fix: correct invalid CSS variable syntax in MenuBar.vue and add Brazilian Portuguese to README localization
1 parent 82e2e67 commit 1d0340e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ remote, hybrid, or office-based, TimeScribe helps you stay focused and organized
6565
- 🇫🇷 French (FR/CA)
6666
- 🇩🇪 German
6767
- 🇮🇹 Italian
68+
- 🇧🇷 Portuguese (BR)
6869
- 🇨🇳 Chinese (中文)
6970

7071
---

resources/js/Pages/MenuBar.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ const removeProject = () => {
267267
<div v-if="props.currentProject && showProject" class="px-2">
268268
<div
269269
:style="'--project-color: ' + (props.currentProject.color ?? '#000000')"
270-
class="transition-color mt-2 flex h-9 shrink-0 items-center gap-2 rounded-md border-l-6 border-l-[var(--project-color)] bg-[var(--project-color)]/10 pl-2 text-sm font-medium duration-1000 dark:bg-[var(--project-color)]/20"
270+
class="transition-color mt-2 flex h-9 shrink-0 items-center gap-2 rounded-md border-l-6 border-l-(--project-color) bg-(--project-color)/10 pl-2 text-sm font-medium duration-1000 dark:bg-(--project-color)/20"
271271
>
272272
<div class="flex h-9 shrink-0 items-center text-xl" v-if="props.currentProject.icon">
273273
{{ props.currentProject.icon }}
@@ -307,7 +307,7 @@ const removeProject = () => {
307307
<template :key="project.id" v-for="project in props.projects">
308308
<div
309309
:style="'--project-color: ' + (project.color ?? '#000000')"
310-
class="mx-2 flex h-9 items-center gap-2 rounded-md border-l-6 border-l-[var(--project-color)] bg-[var(--project-color)]/10 py-1 pl-2 text-sm font-medium dark:bg-[var(--project-color)]/20"
310+
class="mx-2 flex h-9 items-center gap-2 rounded-md border-l-6 border-l-(--project-color) bg-(--project-color)/10 py-1 pl-2 text-sm font-medium dark:bg-(--project-color)/20"
311311
v-if="project.id !== props.currentProject?.id"
312312
>
313313
<div class="flex h-9 shrink-0 items-center text-xl" v-if="project.icon">

0 commit comments

Comments
 (0)