@trackunit/css-tailwind 0.0.85 → 0.0.86

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.85",
3
+ "version": "0.0.86",
4
4
  "main": "./index.cjs.js",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -1044,6 +1044,42 @@ var LayoutsPlugin = (0, import_plugin4.default)(({ addUtilities, addComponents,
1044
1044
  ".layout-area-content": {
1045
1045
  "grid-area": "content"
1046
1046
  },
1047
+ ".layout-page": {
1048
+ display: "grid",
1049
+ height: "100%",
1050
+ "align-content": "flex-start"
1051
+ },
1052
+ ".layout-page-header-content": {
1053
+ "grid-template-rows": "min-content minmax(0, 1fr)"
1054
+ },
1055
+ ".layout-page-content": {
1056
+ "grid-template-rows": "repeat(1, minmax(0, 1fr))"
1057
+ },
1058
+ ".page-content": {
1059
+ overflow: "auto",
1060
+ padding: "var(--spacing-4)",
1061
+ "@media (min-width: 768px)": {
1062
+ padding: "var(--spacing-6)"
1063
+ },
1064
+ "@media (min-width: 1024px)": {
1065
+ padding: "var(--spacing-8)"
1066
+ }
1067
+ },
1068
+ ".page-content-with-gap": {
1069
+ display: "flex",
1070
+ "flex-direction": "column",
1071
+ gap: "var(--spacing-4)",
1072
+ "@media (min-width: 768px)": {
1073
+ gap: "var(--spacing-6)"
1074
+ },
1075
+ "@media (min-width: 1024px)": {
1076
+ gap: "var(--spacing-8)"
1077
+ }
1078
+ },
1079
+ ".layout-page-sidebar-content": {
1080
+ "grid-template-rows": "repeat(1, minmax(0, 1fr))",
1081
+ "grid-template-columns": "360px minmax(0,1fr)"
1082
+ },
1047
1083
  ".layout-left-sidebar-grid": {
1048
1084
  display: "grid",
1049
1085
  "grid-template-rows": "min-content min-content auto",