fix headers open sizes

This commit is contained in:
2026-06-10 12:31:19 +02:00
parent cba86118a6
commit b94edbedb2
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ interface IProps {
const CustomHeaders = ({ headers, updateHeaders }: IProps) => { const CustomHeaders = ({ headers, updateHeaders }: IProps) => {
return ( return (
<div className="mt-4 w-full max-w-175"> <div className="mt-4 w-full max-w-150">
<details className="bg-(--neutral-content)/20 p-4 rounded-lg"> <details className="bg-(--neutral-content)/20 p-4 rounded-lg">
<summary> <summary>
Custom Headers (PDF) Custom Headers (PDF)
+1 -1
View File
@@ -9,7 +9,7 @@ interface IProps {
const HeaderFields = ({ headers, updateHeaders }: IProps) => { const HeaderFields = ({ headers, updateHeaders }: IProps) => {
return ( return (
<div className="mt-4 w-full max-w-175"> <div className="mt-4 w-full max-w-150">
<details className="bg-(--neutral-content)/15 p-4 rounded-lg"> <details className="bg-(--neutral-content)/15 p-4 rounded-lg">
<summary> <summary>
Headers Headers
+1
View File
@@ -109,6 +109,7 @@ const Chessboard = () => {
id="render-times" id="render-times"
name="render-times" name="render-times"
type="checkbox" type="checkbox"
disabled={!gameState.pgn}
checked={gameState.diagramClock} checked={gameState.diagramClock}
onChange={handleToggleClock} onChange={handleToggleClock}
/> />