_kanban.scss
1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.content-wrapper.kanban {
height: 1px;
.content {
height: 100%;
overflow-x: auto;
overflow-y: hidden;
.container,
.container-fluid {
width: max-content;
display: flex;
align-items: stretch;
}
}
.content-header + .content {
height: calc(100% - ((2 * 15px) + (1.8rem * #{$headings-line-height})));
}
.card {
.card-body {
padding: .5rem;
}
&.card-row {
width: 340px;
display: inline-block;
margin: 0 .5rem;
&:first-child {
margin-left: 0;
}
.card-body {
height: calc(100% - (12px + (1.8rem * #{$headings-line-height}) + .5rem));
overflow-y: auto;
}
.card {
&:last-child {
margin-bottom: 0;
border-bottom-width: 1px;
}
.card-header {
padding: .5rem .75rem;
}
.card-body {
padding: .75rem;
}
}
}
}
.btn-tool {
&.btn-link {
text-decoration: underline;
padding-left: 0;
padding-right: 0;
}
}
}