diff --git a/.env b/.env index b47340a..dc17b85 100644 --- a/.env +++ b/.env @@ -43,7 +43,7 @@ MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0 # HLState # Application version, used for API and media cache -APP_VERSION="1.0.0" +APP_VERSION="1.0.1" # Application name APP_NAME="HLState" diff --git a/README.md b/README.md index 72bf4ad..7609bba 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ Web Monitor for Half-Life based on [HLServers](https://github.com/YGGverse/HLSer * [Symfony Framework](https://symfony.com) * [SVG icons](https://icons.getbootstrap.com) * [PHP Source Query](https://github.com/xPaw/PHP-Source-Query) +* [Half-Life logo](https://commons.wikimedia.org/wiki/File:Half-Life_lambda_logo.svg) ## Support diff --git a/public/css/default.css b/public/css/default.css index d07577e..2b7b394 100644 --- a/public/css/default.css +++ b/public/css/default.css @@ -13,7 +13,7 @@ /* vars */ --container-max-width: 768px; --color-success: #4bc432; - --color-warning: #ee784e; + --color-warning: #f37b21; --color-error: #ff6363; --color-default: #999; } @@ -70,6 +70,19 @@ header display: block; margin: 16px auto; max-width: var(--container-max-width); + position: relative; +} + +header > h1 +{ + padding-right: 32px; +} + +header > a:first-child +{ + position: absolute; + top: -2px; + right: 4px; } main diff --git a/templates/default/layout.html.twig b/templates/default/layout.html.twig index c274a3b..22e5721 100644 --- a/templates/default/layout.html.twig +++ b/templates/default/layout.html.twig @@ -11,7 +11,18 @@ {% block header_container %}
{% block header_content %} -

+ + + + + + +

{{ app.name }}

{% endblock %}