diff options
author | Frederick Muriuki Muriithi | 2024-02-09 05:29:08 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-02-12 18:17:39 +0300 |
commit | 34eab8a50ce185aaf786fd7138a3bd0b7c5b0576 (patch) | |
tree | 0c020a6852289b747a85767a3571680ba8ccb69b /qc_app/static | |
parent | 4c077c01db19e8adc01d9559677ad5693a1db909 (diff) | |
download | gn-uploader-34eab8a50ce185aaf786fd7138a3bd0b7c5b0576.tar.gz |
Retrive and display generic bundle errors
Implement the first QC check for generic errors e.g. missing files in
bundle, etc. Display retrieved errors on UI.
Diffstat (limited to 'qc_app/static')
-rw-r--r-- | qc_app/static/css/styles.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/qc_app/static/css/styles.css b/qc_app/static/css/styles.css index f6e829f..474c7f7 100644 --- a/qc_app/static/css/styles.css +++ b/qc_app/static/css/styles.css @@ -198,3 +198,11 @@ form fieldset legend { width: 90%; overflow: scroll; } + +.qc-error-display { + border-radius: 0.8em; + padding-top: 0.5em; + padding-bottom: 0.5em; + max-height: 250px; + overflow: scroll; +} |