Files
remanso/src/modules/repo/interfaces/UserSettings.ts
Julien Calixte ee8bbd4a37 feat(config): add pageWidth setting to .remanso.json
Allows repo owners to configure note column width via `"pageWidth": "700px"` in .remanso.json. Applies the value to the --note-width CSS variable and invalidates the cached width so resize/overlay hooks pick it up.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 23:34:26 +02:00

15 lines
381 B
TypeScript

import { DataType } from "@/data/DataType.enum"
import { Model } from "@/data/models/Model"
export interface UserSettings extends Model<DataType.UserSettings> {
fontFamilies?: string[]
fontFamily?: string
chosenFontFamily?: string
fontSize?: string
chosenFontSize?: string
backlink?: boolean
chosenTitleFont?: string
chosenBodyFont?: string
pageWidth?: string
}