@mixd-id/web-scaffold 0.1.230406139 → 0.1.230406140

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mixd-id/web-scaffold",
3
3
  "private": false,
4
- "version": "0.1.230406139",
4
+ "version": "0.1.230406140",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -38,6 +38,7 @@ export default{
38
38
  <style module>
39
39
 
40
40
  .comp{
41
+ @apply w-full mx-auto max-w-screen-md;
41
42
  background-image: v-bind(bgImages[0]);
42
43
  }
43
44
 
@@ -1,8 +1,10 @@
1
1
  <template>
2
2
  <div :class="$style.comp" v-if="Array.isArray(items) && items.length > 0">
3
3
  <div v-if="id" :id="id" :class="$style.anchor"></div>
4
- <h3>{{ title ?? '' }}</h3>
5
- <p v-if="description" class="mt-2 text-lg">{{ description }}</p>
4
+ <div class="mb-8">
5
+ <h3>{{ title ?? '' }}</h3>
6
+ <p v-if="description" class="mt-2 text-lg">{{ description }}</p>
7
+ </div>
6
8
  <div :class="computedContainerClass">
7
9
  <div v-for="item in items" class="flex gap-4" :class="computedItemClass">
8
10
  <div>
@@ -77,6 +79,7 @@ export default{
77
79
 
78
80
  .comp{
79
81
  @apply relative;
82
+ @apply w-full max-w-screen-xl mx-auto p-6;
80
83
  background-image: v-bind(bgImages[0]);
81
84
  }
82
85
 
@@ -113,7 +113,7 @@ export default{
113
113
 
114
114
  .review{
115
115
  @apply relative flex flex-col gap-4;
116
- @apply w-full mx-auto max-w-screen-xl;
116
+ @apply w-full mx-auto max-w-screen-xl p-6;
117
117
  background-image: v-bind(bgImages[0]);
118
118
  }
119
119