Always set the kanban board to full width for share links
continuous-integration/drone/push Build is failing Details

This commit is contained in:
kolaente 2021-05-19 17:41:04 +02:00
parent fd610d3721
commit 52a0884ca4
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 10 additions and 6 deletions

View File

@ -1,6 +1,6 @@
<template>
<div
:class="{'has-background': background}"
:class="[background ? 'has-background' : '', $route.name+'-view']"
:style="{'background-image': `url(${background})`}"
class="link-share-container"
>

View File

@ -47,12 +47,16 @@
overflow-y: auto
}
.link-share-container.has-background .container {
max-width: 100vw;
.link-share-container {
&.has-background,&.list\.kanban-view {
.container {
max-width: 100vw;
.column {
width: 100%;
margin: 0;
.column {
width: 100%;
margin: 0;
}
}
}
}