diff --git a/CHANGELOG.md b/CHANGELOG.md index 8684440f..389c946f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org). +## [Unreleased] +### Added +* *Nothing* + +### Changed +* *Nothing* + +### Deprecated +* *Nothing* + +### Removed +* *Nothing* + +### Fixed +* [#555](https://github.com/shlinkio/shlink-web-client/issues/555) Fixed vertical alignment in welcome screen logo. + + ## [3.5.0] - 2022-01-01 ### Added * [#407](https://github.com/shlinkio/shlink-web-client/pull/407) Improved how visits (short URLs, tags and orphan) are loaded, to avoid ending up in a page with "There are no visits matching current filter". diff --git a/src/common/Home.scss b/src/common/Home.scss index e3bf4a88..3badce49 100644 --- a/src/common/Home.scss +++ b/src/common/Home.scss @@ -12,8 +12,16 @@ } } +.home__logo-wrapper { + padding: 1.5rem !important; + height: 100% !important; + min-height: 300px; +} + .home__logo { @include vertical-align(); + + width: calc(100% - 3rem); } .home__main-card { @@ -25,6 +33,11 @@ } } +.home__title-wrapper { + padding: 1.5rem !important; + border-bottom: 1px solid var(--border-color); +} + .home__title { text-align: center; font-size: 1.75rem; diff --git a/src/common/Home.tsx b/src/common/Home.tsx index 873de19e..2ca4f42d 100644 --- a/src/common/Home.tsx +++ b/src/common/Home.tsx @@ -30,12 +30,14 @@ const Home = ({ servers, history }: HomeProps) => {
-
- +
+
+ +
-
+

Welcome!