@mirweb/mir-web-components 2.1.2 → 2.1.4

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.
@@ -101,11 +101,10 @@ withDefaults(defineProps<Props>(), {
101
101
  @use "../../../assets/scss/variables.scss" as *;
102
102
 
103
103
  .column-grid {
104
- margin-bottom: 30px;
105
- padding: 0px 30px 30px 30px;
104
+ padding: 60px 30px 60px 30px;
106
105
 
107
106
  @include md {
108
- padding: 0 0 60px 0;
107
+ padding: 60px 0;
109
108
  }
110
109
 
111
110
  &--light {
@@ -157,14 +156,13 @@ withDefaults(defineProps<Props>(), {
157
156
  margin: 0 auto;
158
157
  padding-left: 0px;
159
158
  max-width: $screen-lg-min;
160
- padding-top: 60px;
161
159
  }
162
160
  &__bodytext {
163
161
  font-size: 16px;
164
162
  font-weight: 300;
165
163
  max-width: 658px;
166
164
  font-family: $font-opensans;
167
- margin-bottom: 60px;
165
+ margin-bottom: 30px;
168
166
 
169
167
  :deep(p) {
170
168
  padding-bottom: 1rem;
@@ -124,19 +124,18 @@ const cardSize = computed(() => {
124
124
  }
125
125
 
126
126
  .flashcard-wrapper {
127
- margin: 30px 30px;
127
+ padding: 60px 30px;
128
128
  max-width: $screen-lg-min;
129
129
 
130
130
  @include md {
131
- margin: 30px 0;
131
+ padding: 60px 0;
132
132
  margin: 0 auto;
133
133
  }
134
134
 
135
135
  &__top-section {
136
136
  display: grid;
137
137
  margin: 0 auto;
138
- padding-top: 60px;
139
- padding-bottom: 60px;
138
+ margin-bottom: 30px;
140
139
  }
141
140
 
142
141
  &__headline {
@@ -155,7 +154,7 @@ const cardSize = computed(() => {
155
154
  &__teaser-list {
156
155
  display: grid;
157
156
  gap: 30px;
158
- padding-bottom: 60px;
157
+ //padding-bottom: 60px;
159
158
 
160
159
  &.sm {
161
160
  grid-template-columns: repeat(auto-fit, minmax(223px, 1fr));
@@ -5,10 +5,9 @@
5
5
  {{ headline }}
6
6
  </div>
7
7
  <div class="event__date-location">
8
- {{ dateTime }}
9
- <br />
8
+ <div v-if="dateTime">{{ dateTime }}</div>
10
9
  <div v-if="info" class="event__info">{{ info }}</div>
11
- {{ location }}
10
+ <div v-if="location">{{ location }}</div>
12
11
  </div>
13
12
  <div class="event__exhibitor">{{ exhibitor }}</div>
14
13
  </div>
@@ -28,7 +27,7 @@ defineProps({
28
27
  },
29
28
  dateTime: {
30
29
  type: String,
31
- required: true,
30
+ required: false,
32
31
  },
33
32
  location: {
34
33
  type: String,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mirweb/mir-web-components",
3
3
  "private": false,
4
- "version": "2.1.2",
4
+ "version": "2.1.4",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"