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:
parent
1286848731
commit
dc1413cad9
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue