feat(ckeditor/watchdog): improve layout of info dialog

This commit is contained in:
Elian Doran 2025-12-07 21:01:56 +02:00
parent f424633d8c
commit 37a14fefb3
No known key found for this signature in database
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,11 @@
.modal.info-dialog {
user-select: text;
h3 {
font-size: 1.25em;
}
pre {
font-size: 0.75em;
}
}

View file

@ -7,6 +7,7 @@ import { RawHtmlBlock } from "../react/RawHtml";
import { useTriliumEvent } from "../react/hooks";
import { isValidElement } from "preact";
import { ConfirmWithMessageOptions } from "./confirm";
import "./info.css";
export type InfoExtraProps = Partial<Pick<ModalProps, "size">>;
export type InfoProps = ConfirmWithMessageOptions & InfoExtraProps;