@trackunit/css-tailwind 0.0.183 → 0.0.186

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/css-tailwind",
3
- "version": "0.0.183",
3
+ "version": "0.0.186",
4
4
  "main": "./index.cjs.js",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -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",