diff --git a/src/web/app/common/tags/url.tag b/src/web/app/common/tags/url.tag
index 82ce6bb185..2f25152c54 100644
--- a/src/web/app/common/tags/url.tag
+++ b/src/web/app/common/tags/url.tag
@@ -1,6 +1,8 @@
 <mk-url><a href={ url } target={ opts.target }><span class="schema">{ schema }//</span><span class="hostname">{ hostname }</span><span class="port" if={ port != '' }>:{ port }</span><span class="pathname" if={ pathname != '' }>{ pathname }</span><span class="query">{ query }</span><span class="hash">{ hash }</span></a>
 	<style type="stylus">
 		:scope
+			word-break break-all
+
 			> a
 				&:after
 					content "\f14c"
diff --git a/src/web/app/reset.styl b/src/web/app/reset.styl
index f9297ebd29..2b3527f8f5 100644
--- a/src/web/app/reset.styl
+++ b/src/web/app/reset.styl
@@ -33,3 +33,6 @@ button
 
 	*
 		pointer-events none
+
+pre
+	white-space nowrap