Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nakasyou committed Dec 26, 2023
1 parent 1ab0b7d commit 4d968e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/islands/note-x/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default () => {
})
return <div class="bg-background h-screen touch-manipulation">
<div class="flex flex-col lg:flex-row">
<div class="sticky lg:fixed top-0">
<div class="sticky lg:fixed top-0 z-30">
<Header />
</div>
<div class="w-10 hidden lg:block">
Expand Down
2 changes: 1 addition & 1 deletion src/islands/note-x/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface Props {}

const Header = (props: Props) => {
return (
<div class="w-full lg:w-10 lg:px-2 py-2 bg-surface-variant z-10 h-auto lg:h-[100dvh]">
<div class="w-full lg:w-10 lg:px-2 py-2 bg-surface-variant z-30 h-auto lg:h-[100dvh]">
<div class="flex justify-between items-center flex-row lg:flex-col h-full">
<div>
<a href="/app">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { NoteComponent, NoteComponentProps } from "../../Notes"
import type { NoteComponent, NoteComponentProps } from "../../notes-utils"
import { type SetStoreFunction } from "solid-js/store"
import { createEditorTransaction, createTiptapEditor } from 'solid-tiptap'
import StarterKit from '@tiptap/starter-kit'
Expand Down

0 comments on commit 4d968e6

Please sign in to comment.