sermoni

"Service monitor" / cronjob status service
Log | Files | Refs

commit 3b1700974b6cbe842465d5bdb07084fb26a73ae1
parent a89fc3c8f6256f8cbcc4f5e98e7eb83facab8ad9
Author: Vetle Haflan <vetle@haflan.dev>
Date:   Sat, 15 Aug 2020 10:37:43 +0200

CSS minifix - don't show overflowing event details

Diffstat:
Mui/src/Events.vue | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/Events.vue b/ui/src/Events.vue @@ -13,7 +13,7 @@ <div class="event-field">{{ e.title }}</div> <button v-show="e.id > 0" class="delete-button">&times;</button> </div> - <div v-show="e.open" style="padding: 5px; border: 1px solid rgba(0,0,0,.125); border-top: 0"> + <div v-show="e.open" style="padding: 5px; border: 1px solid rgba(0,0,0,.125); border-top: 0; overflow: auto"> <code style="white-space:pre;">{{e.details}}</code> </div> </div>