@designcrowd/library.brand-page 5.6.4-scroll-2 → 5.6.4-scroll-3

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.
@@ -70,6 +70,7 @@ declare const _default: import("vue").DefineComponent<{}, {
70
70
  fontWeight?: string | undefined;
71
71
  height?: string | undefined;
72
72
  left?: string | undefined;
73
+ right?: string | undefined;
73
74
  letterSpacing?: string | undefined;
74
75
  lineHeight?: string | undefined;
75
76
  marginBottom?: string | undefined;
@@ -82,6 +83,7 @@ declare const _default: import("vue").DefineComponent<{}, {
82
83
  textAlign?: string | undefined;
83
84
  textDecoration?: string | undefined;
84
85
  top?: string | undefined;
86
+ bottom?: string | undefined;
85
87
  transform?: string | undefined;
86
88
  transformOrigin?: string | undefined;
87
89
  transition?: string | undefined;
@@ -118,6 +120,7 @@ declare const _default: import("vue").DefineComponent<{}, {
118
120
  fontWeight?: string | undefined;
119
121
  height?: string | undefined;
120
122
  left?: string | undefined;
123
+ right?: string | undefined;
121
124
  letterSpacing?: string | undefined;
122
125
  lineHeight?: string | undefined;
123
126
  marginBottom?: string | undefined;
@@ -130,6 +133,7 @@ declare const _default: import("vue").DefineComponent<{}, {
130
133
  textAlign?: string | undefined;
131
134
  textDecoration?: string | undefined;
132
135
  top?: string | undefined;
136
+ bottom?: string | undefined;
133
137
  transform?: string | undefined;
134
138
  transformOrigin?: string | undefined;
135
139
  transition?: string | undefined;
@@ -165,6 +169,7 @@ declare const _default: import("vue").DefineComponent<{}, {
165
169
  fontWeight?: string | undefined;
166
170
  height?: string | undefined;
167
171
  left?: string | undefined;
172
+ right?: string | undefined;
168
173
  letterSpacing?: string | undefined;
169
174
  lineHeight?: string | undefined;
170
175
  marginBottom?: string | undefined;
@@ -177,6 +182,7 @@ declare const _default: import("vue").DefineComponent<{}, {
177
182
  textAlign?: string | undefined;
178
183
  textDecoration?: string | undefined;
179
184
  top?: string | undefined;
185
+ bottom?: string | undefined;
180
186
  transform?: string | undefined;
181
187
  transformOrigin?: string | undefined;
182
188
  transition?: string | undefined;
@@ -210,6 +216,7 @@ declare const _default: import("vue").DefineComponent<{}, {
210
216
  fontWeight?: string | undefined;
211
217
  height?: string | undefined;
212
218
  left?: string | undefined;
219
+ right?: string | undefined;
213
220
  letterSpacing?: string | undefined;
214
221
  lineHeight?: string | undefined;
215
222
  marginBottom?: string | undefined;
@@ -222,6 +229,7 @@ declare const _default: import("vue").DefineComponent<{}, {
222
229
  textAlign?: string | undefined;
223
230
  textDecoration?: string | undefined;
224
231
  top?: string | undefined;
232
+ bottom?: string | undefined;
225
233
  transform?: string | undefined;
226
234
  transformOrigin?: string | undefined;
227
235
  transition?: string | undefined;
@@ -257,6 +265,7 @@ declare const _default: import("vue").DefineComponent<{}, {
257
265
  fontWeight?: string | undefined;
258
266
  height?: string | undefined;
259
267
  left?: string | undefined;
268
+ right?: string | undefined;
260
269
  letterSpacing?: string | undefined;
261
270
  lineHeight?: string | undefined;
262
271
  marginBottom?: string | undefined;
@@ -269,6 +278,7 @@ declare const _default: import("vue").DefineComponent<{}, {
269
278
  textAlign?: string | undefined;
270
279
  textDecoration?: string | undefined;
271
280
  top?: string | undefined;
281
+ bottom?: string | undefined;
272
282
  transform?: string | undefined;
273
283
  transformOrigin?: string | undefined;
274
284
  transition?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@designcrowd/library.brand-page",
3
3
  "description": "A collection of Maker/Designer applications",
4
- "version": "5.6.4-scroll-2",
4
+ "version": "5.6.4-scroll-3",
5
5
  "author": "Design.com Eng",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",
@@ -161,8 +161,10 @@ export default defineComponent({
161
161
 
162
162
  if (!this.context.isTemplate) {
163
163
  styles.position = 'fixed';
164
- styles.width = '100%';
165
- styles.height = '100%';
164
+ styles.top = '0';
165
+ styles.bottom = '0';
166
+ styles.left = '0';
167
+ styles.right = '0';
166
168
  }
167
169
 
168
170
  delete styles.background;