tangled
alpha
login
or
join now
finxol.io
/
bookmarker
0
fork
atom
A very simple bookmarking webapp
bookmarker.finxol.deno.net/
0
fork
atom
overview
issues
pulls
pipelines
fix: button component css
finxol.io
1 month ago
aa0f504e
8a718905
verified
This commit was signed with the committer's
known signature
.
finxol.io
SSH Key Fingerprint:
SHA256:olFE3asYdoBMScuJOt60UxXdJ0RFdGv5kVKrdOtIcPI=
+4
-6
4 changed files
expand all
collapse all
unified
split
src
components
ui
button.css
routes
account.tsx
index.tsx
new.tsx
+1
-1
src/routes/account.tsx
···
10
10
PlusIcon,
11
11
TrashIcon,
12
12
} from "lucide-solid"
13
13
-
import "./components/button.css"
13
13
+
import "../components/ui/button.css"
14
14
import "./account.css"
15
15
16
16
export const Route = createFileRoute("/account")({
+1
-3
src/routes/components/button.css
src/components/ui/button.css
···
54
54
}
55
55
56
56
.button-icon {
57
57
-
width: 2rem;
58
58
-
height: 2rem;
59
59
-
padding: 0.25rem;
57
57
+
padding: 0.5rem;
60
58
}
61
59
}
+1
-1
src/routes/index.tsx
···
10
10
RefreshCwIcon,
11
11
TrashIcon,
12
12
} from "lucide-solid"
13
13
-
import "./components/button.css"
13
13
+
import "../components/ui/button.css"
14
14
import "./index.css"
15
15
16
16
export const Route = createFileRoute("/")({
+1
-1
src/routes/new.tsx
···
4
4
import { client } from "../apiclient.ts"
5
5
import { ArrowLeftIcon, LinkIcon, LoaderIcon } from "lucide-solid"
6
6
import { Link } from "@tanstack/solid-router"
7
7
-
import "./components/button.css"
7
7
+
import "../components/ui/button.css"
8
8
import "./new.css"
9
9
10
10
export const Route = createFileRoute("/new")({