diff --git a/src/styles/components/list-backgrounds.scss b/src/styles/components/list-backgrounds.scss index b7b681088..31dd497e4 100644 --- a/src/styles/components/list-backgrounds.scss +++ b/src/styles/components/list-backgrounds.scss @@ -15,7 +15,7 @@ flex-flow: row wrap; .image { - width: calc(100% / 6 - 1em); + width: calc(100% / 5 - 1em); height: 120px; margin: .5em; background-size: cover; @@ -23,7 +23,7 @@ display: flex; @media screen and (min-width: $desktop) { - &:nth-child(6n) { + &:nth-child(5n) { page-break-after: always; // CSS 2.1 syntax break-after: always; // New syntax } diff --git a/src/styles/components/tasks.scss b/src/styles/components/tasks.scss index 500f2ba53..283375325 100644 --- a/src/styles/components/tasks.scss +++ b/src/styles/components/tasks.scss @@ -2,7 +2,6 @@ margin-top: 1rem; padding: 0; text-align: left; - max-width: 80vw; @media screen and (min-width: $tablet) { &.short { @@ -149,4 +148,3 @@ } } } - diff --git a/src/styles/theme/theme.scss b/src/styles/theme/theme.scss index 42bc56fe1..fb3f40bf0 100644 --- a/src/styles/theme/theme.scss +++ b/src/styles/theme/theme.scss @@ -63,3 +63,9 @@ button.table { .pagination { padding-bottom: 1em; } + +.is-max-width-desktop { + width: 100%; + max-width: $desktop; + margin: 0 auto; +} diff --git a/src/views/list/EditList.vue b/src/views/list/EditList.vue index 23d54bf5e..3cb12c8fa 100644 --- a/src/views/list/EditList.vue +++ b/src/views/list/EditList.vue @@ -1,5 +1,5 @@