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.
This commit is contained in:
Pranav Joglekar
2022-10-15 13:20:39 -07:00
committed by GitHub
parent 93839fa434
commit 80f1578142
+1
View File
@@ -86,6 +86,7 @@ body {
a { a {
color: var(--theme-color-action); color: var(--theme-color-action);
word-break: break-word;
&:hover { &:hover {
color: var(--theme-color-palette-12); color: var(--theme-color-palette-12);