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>
15 lines
381 B
TypeScript
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
|
|
}
|