Skip to content

Commit 47dfead

Browse files
committed
[feat]: modify border width for github link and theme toggle button
1 parent 101af7d commit 47dfead

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/www/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "www",
3-
"version": "1.14.7",
3+
"version": "1.14.8",
44
"module": "src/index.js",
55
"scripts": {
66
"dev": "bun run --hot src/index.tsx",

apps/www/src/components/theme-toggle.component.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export function ThemeToggle() {
66
x-data={"themeToggle"}
77
x-on:click="toggle"
88
class={
9-
"border-2 border-transparent hover:border-foreground p-2 rounded-lg transition-colors"
9+
"border border-transparent hover:border-foreground p-2 rounded-lg transition-colors duration-300"
1010
}
1111
>
1212
<Icon name="sun-fill" size={6} x-show="!darkMode" />

apps/www/src/views/header.view.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function Header() {
7979
{SITE.github && (
8080
<a
8181
title="Github"
82-
class="border-2 border-transparent hover:border-foreground flex items-center justify-center p-2 rounded-lg transition-colors"
82+
class="border border-transparent hover:border-foreground flex items-center justify-center p-2 rounded-lg transition-colors duration-300"
8383
target="_blank"
8484
href={"https://github.com/" + SITE.github}
8585
>

0 commit comments

Comments
 (0)