diff options
| author | Kumar Damani <damani.kumar@gmail.com> | 2019-03-20 02:33:08 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-20 02:33:08 +0000 |
| commit | 96e7a3fe02e6f2976bf897ff0aad87c63e2110a6 (patch) | |
| tree | 60c31b4ce78beee9ab7c2ee9142e9718308c3cfa | |
| parent | f96b95e742582011e6db6c78f4e4274c0720888d (diff) | |
| parent | 7cbb77be44854015b943d5a2147fe188bd0132f1 (diff) | |
Merge pull request #41 from csc301-winter-2019/feat/32
fixing ui bugs. 1. side bar max height reduced to 500px. 2. fix for words too long
| -rw-r--r-- | web/public/stylesheets/style.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/public/stylesheets/style.css b/web/public/stylesheets/style.css index 74660a8..ece8da4 100644 --- a/web/public/stylesheets/style.css +++ b/web/public/stylesheets/style.css @@ -34,7 +34,7 @@ a { } #report-container { overflow: auto; - max-height: 750px; + max-height: 500px; } #report { background-color: #0CC5EA; @@ -45,7 +45,6 @@ a { padding: 5px; border-radius: 10px; display: flex; - flex-flow: row wrap; justify-content: flex-end; flex-direction: column; } @@ -62,6 +61,8 @@ a { font-weight: lighter; font-size: large; text-align: center; + overflow-wrap: break-word; + word-wrap: break-word; } #close-btn-container { height: 30px; |
