File tree Expand file tree Collapse file tree 1 file changed +26
-4
lines changed
personalization-webcomponents/src/components Expand file tree Collapse file tree 1 file changed +26
-4
lines changed Original file line number Diff line number Diff line change 9
9
<b >Erstellungsdatum: </b
10
10
>{{ props.checklist.lastUpdated.toLocaleString().split(",")[0] }}
11
11
</p >
12
- <p >
13
- <b >Aufgaben: </b >
14
- <muc-chip
12
+ <div class = " taskcontainer " >
13
+ <div class = " task " >Aufgaben: </div >
14
+ <div class = " chip " >< muc-chip
15
15
v-if =" todoCount"
16
16
style =" margin-right : 8px "
17
17
background-color =" #FDD1AC"
25
25
<use href =" #icon-pencil" />
26
26
</svg >
27
27
</muc-chip >
28
+ </div >
29
+
30
+ <div class =" chip" >
28
31
<muc-chip
29
32
v-if =" doneCount"
30
33
background-color =" #B7D2B7"
38
41
<use href =" #icon-check" />
39
42
</svg >
40
43
</muc-chip >
41
- </p >
44
+ </div >
45
+ </div >
42
46
</muc-intro >
43
47
</template >
44
48
@@ -81,4 +85,22 @@ const doneCount = computed(() => {
81
85
.m-intro-vertical__title {
82
86
margin-bottom : 8px !important ;
83
87
}
88
+
89
+ .taskcontainer {
90
+ display : grid ;
91
+ grid-template-columns : 80px 100px 100px ;
92
+ gap : 8px ;
93
+ }
94
+
95
+ .task {
96
+ padding-top : 3px ;
97
+ text-align : left ;
98
+ font-weight : bold ;
99
+ }
100
+
101
+ @media (max-width : 450px ) {
102
+ .chip :nth-child (3 ) {
103
+ grid-column : 2 ;
104
+ }
105
+ }
84
106
</style >
You can’t perform that action at this time.
0 commit comments