@infonomic/uikit 6.0.1 → 6.0.2
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/README.md +13 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,11 +101,19 @@ Here's an example Tailwind CSS integration. Note that we have our own reset, and
|
|
|
101
101
|
|
|
102
102
|
@theme {
|
|
103
103
|
--breakpoint-*: initial;
|
|
104
|
-
|
|
105
|
-
--breakpoint-
|
|
106
|
-
|
|
107
|
-
--breakpoint-
|
|
108
|
-
|
|
104
|
+
/* 480px */
|
|
105
|
+
--breakpoint-xs: 30rem;
|
|
106
|
+
/* 640px */
|
|
107
|
+
--breakpoint-sm: 40rem;
|
|
108
|
+
/* 768px */
|
|
109
|
+
--breakpoint-md: 48rem;
|
|
110
|
+
/* 1056px */
|
|
111
|
+
--breakpoint-lg: 66rem;
|
|
112
|
+
/* our container component will set max width to common screen size */
|
|
113
|
+
/* 1232px */
|
|
114
|
+
--breakpoint-xl: 77rem;
|
|
115
|
+
/* 1504px */
|
|
116
|
+
--breakpoint-2xl: 94rem;
|
|
109
117
|
|
|
110
118
|
--font-*: initial;
|
|
111
119
|
--font-sans:
|
package/package.json
CHANGED