diff --git a/apps/web/src/App.tsx b/apps/web/src/App.tsx
index 11a436c..28bde7c 100644
--- a/apps/web/src/App.tsx
+++ b/apps/web/src/App.tsx
@@ -210,6 +210,7 @@ function AdminLayout() {
alignItems: "center",
gap: 8,
marginRight: "1.25rem",
+ flexShrink: 0,
}}>
{logoSrc && (
@@ -223,52 +224,61 @@ function AdminLayout() {
-
- Book
-
- {NAV_LINKS.map(({ to, label }) => {
- const active =
- to === "/admin"
- ? location.pathname === "/admin"
- : location.pathname.startsWith(to);
- return (
-
- {label}
-
- );
- })}
+
+
+ Book
+
+ {NAV_LINKS.map(({ to, label }) => {
+ const active =
+ to === "/admin"
+ ? location.pathname === "/admin"
+ : location.pathname.startsWith(to);
+ return (
+
+ {label}
+
+ );
+ })}
+