Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelog/unreleased/39129
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: Fix logo size on login screen

The previous fixed logo size resulted in a cut off logo in some cases. This
was fixed by using a dynamically logo resize css rule.

https://github.com/owncloud/core/pull/39129
4 changes: 2 additions & 2 deletions core/css/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@
#header .logo {
background-image: url('../img/logo.svg');
background-repeat: no-repeat;
background-size: 220px;
background-size: contain;
background-position: center center;
width: 252px;
height: 120px;
height: 142px;
margin: 0 auto;
}

Expand Down