diff --git a/static/css/style.css b/static/css/style.css index 243a5d1..dcbdd1a 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -155,6 +155,7 @@ header { } header .logo { + display: inline-block; font-family: "Raleway"; font-weight: bold; background: var(--color-highlight); @@ -166,6 +167,8 @@ header .logo { color: var(--color-text-main); border-bottom: 3px solid rgba(0, 0, 0, 0); z-index: 10; + overflow: hidden; + white-space: nowrap; } .no-sidebar header .logo { @@ -991,7 +994,8 @@ table.metadata td .emoji { } .view-options a { - margin: 0 10px 0 0; + display: inline-block; + margin: 0 10px 5px 0; padding: 4px 12px; color: var(--color-text-duller); background: var(--color-bg-box); diff --git a/templates/identity/select.html b/templates/identity/select.html index 5f73464..ffe0eba 100644 --- a/templates/identity/select.html +++ b/templates/identity/select.html @@ -11,6 +11,7 @@ {{ identity.html_name_or_handle }} @{{ identity.handle }} + {% empty %}

You have no identities.

@@ -18,10 +19,5 @@ Create a new identity - {% if request.identity %} - - View current profile page ({{ request.identity.name }}) - - {% endif %} {% endblock %}