diff --git a/.env b/.env index a720e2a..8639501 100644 --- a/.env +++ b/.env @@ -19,7 +19,7 @@ APP_ENV=dev APP_SECRET=EDIT_ME ###< symfony/framework-bundle ### -APP_VERSION=1.5.4 +APP_VERSION=1.5.5 APP_NAME=KevaChat diff --git a/public/css/default.css b/public/css/default.css index 5c8f669..2351ae3 100644 --- a/public/css/default.css +++ b/public/css/default.css @@ -32,6 +32,13 @@ a:hover text-decoration: underline; } +hr { + background-color: var(--color-default); + border: none; + color: var(--color-default); + height: 1px; +} + body { font-size: 12px; @@ -41,11 +48,12 @@ body header { background-color: Canvas; - border-bottom: 1px var(--color-default) solid; display: block; left: 0; margin: 0 auto; max-width: calc(var(--container-max-width) + 2px); + padding-left: 4px; + padding-right: 4px; padding-top: 16px; position: fixed; right: 0; @@ -164,6 +172,7 @@ footer footer > form { bottom: 16px; + box-sizing: border-box; display: block; margin: 16px auto; max-width: var(--container-max-width); diff --git a/templates/default/module/rooms.html.twig b/templates/default/module/rooms.html.twig index 7d2d262..c5d555a 100644 --- a/templates/default/module/rooms.html.twig +++ b/templates/default/module/rooms.html.twig @@ -20,16 +20,17 @@ {% endif %} {% if list %} • -

- {% if form.namespace.value %} - {{ 'more...' | trans }} - {% else %} - {{ 'more...' | trans }} - {% endif %} -

- - - - - -{% endif %} \ No newline at end of file +{% endif %} +

+ {% if form.namespace.value %} + {{ 'more...' | trans }} + {% else %} + {{ 'more...' | trans }} + {% endif %} +

+ + + + + +
\ No newline at end of file