@vtex/faststore-plugin-buyer-portal 1.1.52 → 1.1.53
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
package/src/features/buying-policies/components/BasicBuyingPolicyDrawer/BasicBuyingPolicyDrawer.tsx
CHANGED
|
@@ -186,7 +186,9 @@ export const BasicBuyingPolicyDrawer = ({
|
|
|
186
186
|
</h4>
|
|
187
187
|
|
|
188
188
|
{isDrawerLoading ? (
|
|
189
|
-
<
|
|
189
|
+
<div data-fs-bp-basic-buying-policy-drawer-skeleton>
|
|
190
|
+
<Skeleton size={{ width: "100%", height: "3.5rem" }} />
|
|
191
|
+
</div>
|
|
190
192
|
) : (
|
|
191
193
|
<InputText
|
|
192
194
|
label="Name"
|
|
@@ -15,6 +15,11 @@
|
|
|
15
15
|
@import "../../../shared/components/LevelDivider/level-divider.scss";
|
|
16
16
|
@import "@faststore/ui/src/components/molecules/Tooltip/styles.scss";
|
|
17
17
|
|
|
18
|
+
&[data-fs-bp-basic-drawer] {
|
|
19
|
+
--fs-slide-over-partial-max-width-notebook: 60rem; //960px
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
|
|
18
23
|
[data-fs-bp-autocomplete-dropdown] {
|
|
19
24
|
position: relative;
|
|
20
25
|
|
|
@@ -30,10 +35,6 @@
|
|
|
30
35
|
}
|
|
31
36
|
}
|
|
32
37
|
|
|
33
|
-
&[data-fs-slide-over-size="partial"] {
|
|
34
|
-
max-width: calc(var(--fs-grid-breakpoint-phone) * 3);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
38
|
[data-fs-bp-basic-drawer-body] {
|
|
38
39
|
padding-bottom: calc(var(--fs-spacing-7) * 2);
|
|
39
40
|
|
|
@@ -187,4 +188,8 @@
|
|
|
187
188
|
color: #0366dd;
|
|
188
189
|
}
|
|
189
190
|
}
|
|
191
|
+
|
|
192
|
+
[data-fs-bp-basic-buying-policy-drawer-skeleton] {
|
|
193
|
+
margin-bottom: var(--fs-spacing-3);
|
|
194
|
+
}
|
|
190
195
|
}
|