@vtex/faststore-plugin-buyer-portal 1.1.86 → 1.1.87
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/features/custom-fields/layouts/CustomFieldsLayout/custom-fields-layout.scss +4 -0
- package/src/features/payment-methods/components/SearchPaymentMethods/search-payment-methods.scss +1 -1
- package/src/features/payment-methods/layouts/PaymentMethodsLayout/payment-methods-layout.scss +1 -1
- package/src/features/shared/components/HeaderInside/header-inside.scss +1 -1
- package/src/features/shared/layouts/BaseTabsLayout/base-tabs-layout.scss +6 -1
- package/src/features/shared/layouts/CustomFieldLayout/CustomFieldLayout.tsx +1 -0
- package/src/features/shared/layouts/CustomFieldLayout/custom-field-layout.scss +28 -2
package/package.json
CHANGED
|
@@ -74,6 +74,11 @@
|
|
|
74
74
|
[data-fs-bp-nav-menu-actions] {
|
|
75
75
|
display: flex;
|
|
76
76
|
align-items: center;
|
|
77
|
+
[data-fs-bp-nav-menu-start-shopping-link] {
|
|
78
|
+
}
|
|
79
|
+
@include media("<=tablet") {
|
|
80
|
+
display: none;
|
|
81
|
+
}
|
|
77
82
|
}
|
|
78
83
|
|
|
79
84
|
[data-fs-bp-nav-menu-start-shopping-link] {
|
|
@@ -119,7 +124,7 @@
|
|
|
119
124
|
|
|
120
125
|
padding: var(--fs-spacing-6);
|
|
121
126
|
overflow-y: auto;
|
|
122
|
-
|
|
127
|
+
|
|
123
128
|
@include media("<notebook") {
|
|
124
129
|
display: none;
|
|
125
130
|
}
|
|
@@ -17,9 +17,26 @@
|
|
|
17
17
|
|
|
18
18
|
[data-fs-bp-custom-fields-wrapper] {
|
|
19
19
|
display: flex;
|
|
20
|
-
align-items: center;
|
|
21
20
|
justify-content: space-between;
|
|
22
|
-
|
|
21
|
+
align-items: baseline;
|
|
22
|
+
gap: var(--fs-spacing-1);
|
|
23
|
+
width: 100%;
|
|
24
|
+
|
|
25
|
+
[data-fs-bp-pagination] {
|
|
26
|
+
font-size: var(--fs-text-size-1);
|
|
27
|
+
color: #5c5c5c;
|
|
28
|
+
display: block;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@include media("<=tablet") {
|
|
32
|
+
[data-fs-buyer-portal-internal-search] {
|
|
33
|
+
width: 100%;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
[data-fs-bp-pagination] {
|
|
37
|
+
display: none;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
23
40
|
}
|
|
24
41
|
|
|
25
42
|
[data-fs-bp-custom-fields-empty-state] {
|
|
@@ -38,4 +55,13 @@
|
|
|
38
55
|
height: 2.5rem;
|
|
39
56
|
}
|
|
40
57
|
}
|
|
58
|
+
section {
|
|
59
|
+
[data-fs-bp-pagination] {
|
|
60
|
+
display: none;
|
|
61
|
+
|
|
62
|
+
@include media("<=tablet") {
|
|
63
|
+
display: flex;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
41
67
|
}
|