diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-01 17:20:59 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-01 17:20:59 +0200 |
commit | 4ea63e98cc999ab05d1ac98b64875d7413e86972 (patch) | |
tree | 0edf4f1a65fd53d0e2d6e5bcbbafb5a71faa6cc7 /scss | |
parent | 8f5f9ff24b0327f7640e3619de109e1f19cfba1d (diff) | |
download | cerrado-4ea63e98cc999ab05d1ac98b64875d7413e86972.tar.gz cerrado-4ea63e98cc999ab05d1ac98b64875d7413e86972.tar.bz2 cerrado-4ea63e98cc999ab05d1ac98b64875d7413e86972.zip |
feat: Add initial log
Diffstat (limited to 'scss')
-rw-r--r-- | scss/main.scss | 35 |
1 files changed, 31 insertions, 4 deletions
diff --git a/scss/main.scss b/scss/main.scss index deea23b..9f17dad 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -26,10 +26,6 @@ body { margin: 0; } -.card-body { - padding: 5px; -} - .navbar-nav { margin-top: 0px } @@ -65,3 +61,34 @@ body { display: grid; overflow-x: auto; } + +.logs { + >div:nth-child(odd) { + background: #f8f9fa; + } + + >div { + padding: 10px; + } + + pre { + white-space: break-spaces; + margin: 0; + } +} + +.logs pre::first-line { + font-weight: bold; +} + +@include media-breakpoint-down(sm) { + // add extra spacing then list is seen on vertical + .logs>div>div:first-child { + margin-bottom: 15px; + } + .logs>div>div:last-child { + margin-top: 15px; + } +} + + |