Always set the kanban board to full width for share links
This commit is contained in:
parent
fd610d3721
commit
52a0884ca4
2 changed files with 10 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
:class="{'has-background': background}"
|
:class="[background ? 'has-background' : '', $route.name+'-view']"
|
||||||
:style="{'background-image': `url(${background})`}"
|
:style="{'background-image': `url(${background})`}"
|
||||||
class="link-share-container"
|
class="link-share-container"
|
||||||
>
|
>
|
||||||
|
|
|
@ -47,12 +47,16 @@
|
||||||
overflow-y: auto
|
overflow-y: auto
|
||||||
}
|
}
|
||||||
|
|
||||||
.link-share-container.has-background .container {
|
.link-share-container {
|
||||||
max-width: 100vw;
|
&.has-background,&.list\.kanban-view {
|
||||||
|
.container {
|
||||||
|
max-width: 100vw;
|
||||||
|
|
||||||
.column {
|
.column {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue