File tree Expand file tree Collapse file tree 1 file changed +22
-6
lines changed
personalization-webcomponents/src Expand file tree Collapse file tree 1 file changed +22
-6
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <main >
2
+ <main class = " container " >
3
3
<!-- eslint-disable-next-line vue/no-v-html -->
4
4
<div v-html =" mucIconsSprite" />
5
5
<!-- eslint-disable-next-line vue/no-v-html -->
6
6
<div v-html =" customIconsSprite" />
7
- <h1
8
- style =" padding -bottom : 24px ;"
7
+ <h2
8
+ style =" display : flex ; align-items : center ; margin -bottom : 24px ;"
9
9
>
10
- <muc-icon icon =" order-bool-ascending" ></muc-icon >
10
+ <muc-icon
11
+ style =" width : 32px ; height : 32px ; margin-right : 8px ;"
12
+ icon =" order-bool-ascending"
13
+ ></muc-icon >
11
14
Aktive Checklisten ({{ checklists.length }})
12
- </h1 >
15
+ </h2 >
13
16
<muc-card-container
14
- style = " grid-template-columns : repeat ( auto-fit , 589 px ) "
17
+ class = " checklist-card-container "
15
18
>
16
19
<skeleton-loader
17
20
v-for =" () in [1,2,3,4]"
@@ -63,3 +66,16 @@ onMounted(() => {
63
66
@import " @muenchen/muc-patternlab-vue/assets/css/custom-style.css" ;
64
67
@import " @muenchen/muc-patternlab-vue/style.css" ;
65
68
</style >
69
+
70
+ <style scoped>
71
+ .checklist-card-container {
72
+ grid-template-columns : repeat (auto-fit , 100% );
73
+ }
74
+
75
+ @media (min-width : 768px ) {
76
+ .checklist-card-container {
77
+ grid-template-columns : repeat (auto-fit ,589px );
78
+ }
79
+ }
80
+
81
+ </style >
You can’t perform that action at this time.
0 commit comments