From 80f157814249e65092484345d8ec0f82ae6bc2bf Mon Sep 17 00:00:00 2001 From: Pranav Joglekar Date: Sun, 16 Oct 2022 01:50:39 +0530 Subject: [PATCH] fix ui: make navbar cover whole width of page (#2213) Previously, there was a large url on the page, and the a tag did not have word break property set - which resulted in the browser trying to display the whole page with increased width. Allowing the a tag to have a word break fixes this issue. --- web/styles/globals.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/web/styles/globals.scss b/web/styles/globals.scss index ffa7c90d9..22b7fd121 100644 --- a/web/styles/globals.scss +++ b/web/styles/globals.scss @@ -86,6 +86,7 @@ body { a { color: var(--theme-color-action); + word-break: break-word; &:hover { color: var(--theme-color-palette-12);