Make background cover whole viewport

Without a min-height, wider viewports can result in a blank white space at the bottom of the screen. This CSS ensures that doesn't happen.

Signed-off-by: Jo Sprague <git@josprague.com>
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
This commit is contained in:
Jo Sprague 2021-03-15 13:45:42 +00:00 committed by Vincent Petry
parent 1286848731
commit dc1413cad9
No known key found for this signature in database
GPG Key ID: E055D6A4D513575C
3 changed files with 4 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -403,6 +403,7 @@ export default {
<style lang="scss" scoped>
#app-dashboard {
width: 100%;
min-height: 100vh;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;