diff options
author | Frederick Muriuki Muriithi | 2024-02-10 07:37:43 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-02-12 18:17:41 +0300 |
commit | 22ef0cad3cfe4a0464b00624835372f2734ec154 (patch) | |
tree | b0b26ee10cac270feef40a0c44a7ee6b86709921 /qc_app/static/css/styles.css | |
parent | 4729abd0ab7a8fbeb700a278ac8bdfcf62ab79ac (diff) | |
download | gn-uploader-22ef0cad3cfe4a0464b00624835372f2734ec154.tar.gz |
Improve error display for generic errors
Diffstat (limited to 'qc_app/static/css/styles.css')
-rw-r--r-- | qc_app/static/css/styles.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/qc_app/static/css/styles.css b/qc_app/static/css/styles.css index 79dab0e..67e8cb3 100644 --- a/qc_app/static/css/styles.css +++ b/qc_app/static/css/styles.css @@ -134,9 +134,13 @@ form fieldset:nth-child(odd) { } @media(min-width: 1250px) { - form, .explainer, .error-table { + form, .explainer { width: 65ch; } + + .error-table { + width: 85ch; + } } fieldset { @@ -202,3 +206,15 @@ form fieldset legend { max-height: 250px; overflow: scroll; } + +.error-table { + display: block; + overflow: scroll; + max-height: 250px; + margin: 1em 0; +} + +.error-table thead { + position: sticky; + top: 0; +} |