Skip to content

Commit

Permalink
refactor: changed border color in precision selector (#87)
Browse files Browse the repository at this point in the history
* refactor: changed border color

* style: reformated file
  • Loading branch information
Alex-zReeZ authored Jul 5, 2024
1 parent 26cd04a commit 92b90cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nextjs-interface/src/app/dashboard/esp/[espId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,19 @@ export default function Page({ params }: { params: any }) {
</SelectItem>
<SelectItem
value="Day"
className="cursor-pointer rounded-none border-t-2 border-gray-600"
className="cursor-pointer rounded-none border-t-2 border-secondary dark:border-gray-700"
>
Day
</SelectItem>
<SelectItem
value="Hour"
className="cursor-pointer rounded-none border-t-2 border-gray-600"
className="cursor-pointer rounded-none border-t-2 border-secondary dark:border-gray-700"
>
Hour
</SelectItem>
<SelectItem
value="Minute"
className="cursor-pointer rounded-none border-t-2 border-gray-600"
className="cursor-pointer rounded-none border-t-2 border-secondary dark:border-gray-700"
>
Minute
</SelectItem>
Expand Down

0 comments on commit 92b90cc

Please sign in to comment.