@trackunit/css-tailwind 0.0.183 → 0.0.184
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
|
@@ -1243,6 +1243,14 @@ var LayoutsPlugin = (0, import_plugin4.default)(({ addUtilities, addComponents,
|
|
|
1243
1243
|
"grid-template-columns": "repeat(var(--occupation), minmax(min(var(--min-column-width), 100%), 1fr))",
|
|
1244
1244
|
gap: "var(--spacing-responsive-space)",
|
|
1245
1245
|
},
|
|
1246
|
+
// Overlap children on the same grid cell without using absolute positioning
|
|
1247
|
+
".layout-overlap-grid": {
|
|
1248
|
+
display: "grid",
|
|
1249
|
+
"& > *": {
|
|
1250
|
+
"grid-column": "1",
|
|
1251
|
+
"grid-row": "1",
|
|
1252
|
+
},
|
|
1253
|
+
},
|
|
1246
1254
|
// MapControlsGrid
|
|
1247
1255
|
".layout-area-map-controls-content": {
|
|
1248
1256
|
"grid-area": "map-controls-content",
|