JavaScript is disabled. Features will be limited.
diff --git a/src/components/Bars.tsx b/src/components/Bars.tsx
index 7981594..9056541 100644
--- a/src/components/Bars.tsx
+++ b/src/components/Bars.tsx
@@ -171,7 +171,7 @@ export function RightBarContent() {
}
export function LeftBar() {
- const { leftBarSize, leftBarVisible, setLeftBarVisible } = useBars();
+ const { leftBarVisible, setLeftBarVisible } = useBars();
let ref: HTMLDivElement | undefined;
const [recentPosts, setRecentPosts] = createSignal
(
@@ -293,14 +293,14 @@ export function LeftBar() {
tabindex="-1"
ref={ref}
aria-label="Main navigation"
- class="border-r-overlay2 bg-base fixed z-50 h-dvh w-min border-r-2 transition-transform duration-500 ease-out"
+ class="border-r-overlay2 bg-base fixed z-50 h-dvh border-r-2 transition-transform duration-500 ease-out"
classList={{
"-translate-x-full": !leftBarVisible(),
"translate-x-0": leftBarVisible()
}}
style={{
"transition-timing-function": "cubic-bezier(0.4, 0, 0.2, 1)",
- "min-width": "250px",
+ width: "250px",
"box-shadow": "inset -6px 0 16px -6px rgba(0, 0, 0, 0.1)",
"padding-top": "env(safe-area-inset-top)",
"padding-bottom": "env(safe-area-inset-bottom)"
@@ -477,14 +477,14 @@ export function RightBar() {
diff --git a/src/components/blog/EditCommentModal.tsx b/src/components/blog/EditCommentModal.tsx
index 3decb83..324ee25 100644
--- a/src/components/blog/EditCommentModal.tsx
+++ b/src/components/blog/EditCommentModal.tsx
@@ -27,7 +27,7 @@ export default function EditCommentModal(props: EditCommentModalProps) {
id="edit_prompt"
class="fade-in bg-surface1 z-50 rounded-md px-8 py-4 shadow-lg"
>
-