From ad0e2af8c80352bc47ef741abd00f33c5e5a4fb3 Mon Sep 17 00:00:00 2001 From: Stanislav Lunyachek Date: Mon, 31 Mar 2025 17:01:40 +0300 Subject: [PATCH] feat: ORA visual improvements --- src/containers/Rubric/Rubric.scss | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/containers/Rubric/Rubric.scss b/src/containers/Rubric/Rubric.scss index 315fcd6..6744d2c 100644 --- a/src/containers/Rubric/Rubric.scss +++ b/src/containers/Rubric/Rubric.scss @@ -19,15 +19,19 @@ } } .criteria-option { + display: flex; width: 100%; > div { - display: inline; + display: flex; + align-items: flex-start; + justify-content: space-between; width: 100%; .pgn__form-label { display: inline-flex; + padding-right: 10px; } .pgn__form-control-description { - float: right; + white-space: nowrap; } } } @@ -42,6 +46,10 @@ .help-popover-option { margin-bottom: map-get($spacers, 1); } + .popover-body { + max-height: 100vh; + overflow-y: auto !important; + } } @@ -80,4 +88,4 @@ .grading-rubric-card { margin-left: 0 !important; } -} \ No newline at end of file +}