Skip to content

Commit 0b97248

Browse files
committed
chore: release
1 parent f54f448 commit 0b97248

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
33
"productName": "Lume",
4-
"version": "24.11.2",
4+
"version": "24.11.3",
55
"identifier": "nu.lume.Lume",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

src/components/column.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function Header({
160160
<button
161161
type="button"
162162
onClick={(e) => showContextMenu(e)}
163-
className="hidden shrink-0 group-hover:inline-flex items-center justify-center size-6 border-[.5px] border-neutral-200 dark:border-neutral-800 shadow shadow-neutral-200/50 dark:shadow-none rounded-full bg-white dark:bg-black"
163+
className="hidden shrink-0 group-hover:inline-flex items-center justify-center size-6 bg-white dark:bg-neutral-800 border-[.5px] border-neutral-200 dark:border-neutral-800 shadow shadow-neutral-200/50 dark:shadow-none rounded-full"
164164
>
165165
<CaretDown className="size-3" weight="bold" />
166166
</button>

src/routes/columns/_layout/create-newsfeed.users.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function Screen() {
9393
data?.map((item) => (
9494
<div
9595
key={item}
96-
className="w-full p-2 mb-2 overflow-hidden bg-white rounded-lg h-max dark:bg-black/20shadow-primary dark:ring-1 ring-neutral-800/50"
96+
className="w-full p-2 mb-2 overflow-hidden bg-white rounded-lg h-max dark:bg-black/20 shadow-primary dark:ring-1 ring-neutral-800/50"
9797
>
9898
<User.Provider pubkey={item}>
9999
<User.Root>

src/routes/columns/_layout/groups.$id.lazy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export function Screen() {
8888
>
8989
<ScrollArea.Viewport
9090
ref={ref}
91-
className="relative h-full bg-white dark:bg-black rounded-t-xl shadow shadow-neutral-300/50 dark:shadow-none border-[.5px] border-neutral-300 dark:border-neutral-700"
91+
className="relative h-full bg-white dark:bg-neutral-800 rounded-t-xl shadow shadow-neutral-300/50 dark:shadow-none border-[.5px] border-neutral-300 dark:border-neutral-700"
9292
>
9393
<Virtualizer scrollRef={ref as unknown as RefObject<HTMLElement>}>
9494
{isFetching && !isLoading && !isFetchingNextPage ? (

0 commit comments

Comments
 (0)