From b0e18b45b7a0a58f96f9134527c0dff648e817e4 Mon Sep 17 00:00:00 2001 From: "Phyks (Lucas Verney)" Date: Tue, 2 May 2017 14:30:02 +0200 Subject: [PATCH] Fix bugs in Chromium. Closes issue #33. --- flatisfy/web/js_src/views/details.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/flatisfy/web/js_src/views/details.vue b/flatisfy/web/js_src/views/details.vue index 99e213c..ef114d6 100644 --- a/flatisfy/web/js_src/views/details.vue +++ b/flatisfy/web/js_src/views/details.vue @@ -256,6 +256,7 @@ export default { .grid { display: grid; grid-gap: 50px; + grid-template-columns: 75fr 25fr; } .left-panel { @@ -293,9 +294,18 @@ button { font-size: 0.9em; } +table { + table-layout: fixed; +} + +td { + word-wrap: break-word; +} + .time_to_list { margin: 0; padding-left: 0; list-style-position: outside; + list-style-type: none; }