@asd20/ui 3.2.435 → 3.2.438
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 +1 -1
- package/src/components/organisms/Asd20AppHeader/index.vue +1 -1
- package/src/components/organisms/Asd20OrganizationPicker/index.vue +2 -2
- package/src/components/organisms/Asd20SecondaryHeader/index.vue +7 -2
- package/src/components/organisms/Asd20VideoHeader/index.vue +11 -2
- package/src/components/organisms/Asd20VideoHeaderContent/index.vue +7 -2
- package/src/components/templates/Asd20AppTemplate/index.vue +1 -1
package/package.json
CHANGED
|
@@ -38,7 +38,7 @@ export default {
|
|
|
38
38
|
// background-image: var(--website-homepage-header__secondary-background-style);
|
|
39
39
|
// background-position: bottom right !important;
|
|
40
40
|
// background-size: cover !important;
|
|
41
|
-
padding: space(3) space(1) space(
|
|
41
|
+
padding: space(3) space(1) space(1) space(1);
|
|
42
42
|
|
|
43
43
|
&::v-deep .asd20-messaging__heading {
|
|
44
44
|
@include fluid-type($base-font-size * 1.5, $base-font-size * 2);
|
|
@@ -66,7 +66,8 @@ export default {
|
|
|
66
66
|
700
|
|
67
67
|
);
|
|
68
68
|
flex-direction: column;
|
|
69
|
-
width:
|
|
69
|
+
width: 70vw;
|
|
70
|
+
margin: space(0.5) auto;
|
|
70
71
|
color: var(--website-homepage-header__secondary-button-foreground-color);
|
|
71
72
|
// background: var(--website-homepage-header__secondary-button-background-color);
|
|
72
73
|
&:hover {
|
|
@@ -113,6 +114,10 @@ export default {
|
|
|
113
114
|
&::v-deep .lead {
|
|
114
115
|
width: 100%;
|
|
115
116
|
}
|
|
117
|
+
&::v-deep .asd20-button {
|
|
118
|
+
width: 50vw;
|
|
119
|
+
margin: space(0.25) 0;
|
|
120
|
+
}
|
|
116
121
|
}
|
|
117
122
|
}
|
|
118
123
|
@media (min-width: 1024px) {
|
|
@@ -86,8 +86,8 @@ export default {
|
|
|
86
86
|
.background-image {
|
|
87
87
|
display: block;
|
|
88
88
|
// position: absolute;
|
|
89
|
-
height:
|
|
90
|
-
min-height:
|
|
89
|
+
height: 50vh;
|
|
90
|
+
min-height: 400px;
|
|
91
91
|
width: 100%;
|
|
92
92
|
z-index: -1;
|
|
93
93
|
object-fit: cover;
|
|
@@ -188,6 +188,15 @@ export default {
|
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
+
@media (min-width: 768px) {
|
|
192
|
+
.asd20-video-header {
|
|
193
|
+
.background-image {
|
|
194
|
+
height: 80vh;
|
|
195
|
+
min-height: 400px;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
191
200
|
@media (min-width: 1024px) {
|
|
192
201
|
.asd20-video-header {
|
|
193
202
|
&::after {
|
|
@@ -83,7 +83,8 @@ export default {
|
|
|
83
83
|
700
|
|
84
84
|
);
|
|
85
85
|
flex-direction: column;
|
|
86
|
-
width:
|
|
86
|
+
width: 70vw;
|
|
87
|
+
margin: space(0.5) auto;
|
|
87
88
|
color: var(--website-homepage-header__button-foreground-color);
|
|
88
89
|
background: var(--website-homepage-header__button-background-color);
|
|
89
90
|
border: none;
|
|
@@ -95,7 +96,7 @@ export default {
|
|
|
95
96
|
.header-messaging-section {
|
|
96
97
|
// border-bottom: 10px solid var(--color__accent);
|
|
97
98
|
&::v-deep .asd20-messaging__content {
|
|
98
|
-
margin: space(
|
|
99
|
+
margin: space(1) 0;
|
|
99
100
|
}
|
|
100
101
|
}
|
|
101
102
|
}
|
|
@@ -113,6 +114,10 @@ export default {
|
|
|
113
114
|
margin-top: 0;
|
|
114
115
|
}
|
|
115
116
|
}
|
|
117
|
+
&::v-deep .asd20-button {
|
|
118
|
+
width: 50vw;
|
|
119
|
+
margin: space(0.25) 0;
|
|
120
|
+
}
|
|
116
121
|
}
|
|
117
122
|
}
|
|
118
123
|
|