diff --git a/web/static/css/theme.css b/web/static/css/theme.css
index 14cb3f4..b50616f 100644
--- a/web/static/css/theme.css
+++ b/web/static/css/theme.css
@@ -159,6 +159,12 @@ nav.navbar {
height: 1.5em !important;
}
+/* Bulma breadcrumbs don't word-wrap which can cause horizontal scrolling on mobile,
+ especially on forum thread pages with a long thread title. */
+.breadcrumb {
+ white-space: inherit;
+}
+
/***
* Mobile navbar notification count badge no.
*/
diff --git a/web/templates/account/dashboard.html b/web/templates/account/dashboard.html
index fb5a78b..69eceb5 100644
--- a/web/templates/account/dashboard.html
+++ b/web/templates/account/dashboard.html
@@ -4,8 +4,13 @@
-
User Dashboard
- to your account
+
+
+
+
+ My Dashboard
+
+ Settings & Notifications
@@ -182,7 +187,7 @@
diff --git a/web/templates/account/search.html b/web/templates/account/search.html
index f1423be..3a66c29 100644
--- a/web/templates/account/search.html
+++ b/web/templates/account/search.html
@@ -82,6 +82,15 @@
Learn more
+ {{else}}
+
{{end}}
@@ -444,47 +453,48 @@
{{if .GetProfileField "orientation"}}
{{.GetProfileField "orientation"}}
{{end}}
-
-
- {{if $Root.UserOnChatMap.Get .Username}}
-
-
-
- Currently on chat!
-
-
- {{end}}
-
-
- {{if eq $Root.Sort "last_login_at desc"}}
-
-
- Last logged in:
-
- {{SincePrettyCoarse .LastLoginAt}} ago
-
-
-
- {{end}}
-
- {{if or (eq $Root.Sort "created_at desc") (eq $Root.Sort "certification_photos.updated_at desc")}}
-
-
- Member since:
-
- {{SincePrettyCoarse .CreatedAt}} ago
-
-
-
- {{end}}
-
-
- {{if eq $Root.Sort "distance"}}
-
- {{$Root.DistanceMap.Get .ID}} away
-
- {{end}}
+
+
+ {{if $Root.UserOnChatMap.Get .Username}}
+
+
+
+ Currently on chat!
+
+
+ {{end}}
+
+
+ {{if eq $Root.Sort "last_login_at desc"}}
+
+
+ Last logged in:
+
+ {{SincePrettyCoarse .LastLoginAt}} ago
+
+
+
+ {{end}}
+
+ {{if or (eq $Root.Sort "created_at desc") (eq $Root.Sort "certification_photos.updated_at desc")}}
+
+
+ Member since:
+
+ {{SincePrettyCoarse .CreatedAt}} ago
+
+
+
+ {{end}}
+
+
+ {{if eq $Root.Sort "distance"}}
+
+ {{$Root.DistanceMap.Get .ID}} away
+
+ {{end}}
+