diff --git a/src/css/styles.css b/src/css/styles.css index 386388c..598c2ca 100644 --- a/src/css/styles.css +++ b/src/css/styles.css @@ -273,6 +273,25 @@ body { overflow-wrap: anywhere; } +/* Task editor */ +/* Compact type scale, scoped to the editor: at the board's default 1rem the form runs + past a laptop viewport and every textarea loses a visible line of text. */ +#taskModal .modal-title { + font-size: 1.1rem; +} +#taskModal .form-label, +#taskModal .form-control, +#taskModal .form-select, +#taskModal .form-check-label, +#taskModal .modal-footer .btn { + font-size: 0.85rem; +} +/* Height comes from each textarea's rows attribute; this only stops horizontal + dragging, which would otherwise break the modal grid. */ +#taskModal .task-editor-textarea { + resize: vertical; +} + /* Timeline */ .timeline-toggle { cursor: pointer; diff --git a/src/index.html b/src/index.html index e2106f5..6fb6bee 100644 --- a/src/index.html +++ b/src/index.html @@ -128,11 +128,11 @@