@riosst100/pwa-marketplace 3.1.0 → 3.1.1

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@riosst100/pwa-marketplace",
3
3
  "author": "riosst100@gmail.com",
4
- "version": "3.1.0",
4
+ "version": "3.1.1",
5
5
  "main": "src/index.js",
6
6
  "pwa-studio": {
7
7
  "targets": {
@@ -0,0 +1,27 @@
1
+ .submenuColumn {
2
+ /* composes: max-w-[235px] from global; */
3
+ composes: p-5 from global;
4
+ }
5
+
6
+ .heading {
7
+ /* composes: font-medium from global; */
8
+ font-weight: 600;
9
+ }
10
+
11
+ .link {
12
+ composes: whitespace-nowrap from global;
13
+ composes: focus_underline from global;
14
+ composes: hover_underline from global;
15
+ }
16
+
17
+ .linkActive {
18
+ composes: underline from global;
19
+ }
20
+
21
+ .submenuChild {
22
+ composes: mt-0 from global;
23
+ }
24
+
25
+ .submenuChildItem {
26
+ composes: mb-3 from global;
27
+ }