@bfme-technology/styled 0.1.0 → 0.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 +1 -1
- package/src/studioAdminStyles.js +3 -3
package/package.json
CHANGED
package/src/studioAdminStyles.js
CHANGED
|
@@ -79,10 +79,10 @@ export const metricCardTitleClass =
|
|
|
79
79
|
export const metricValueClass = "m-0 text-4xl font-bold text-indigo-600 dark:text-indigo-300";
|
|
80
80
|
|
|
81
81
|
export const gridContainerClass =
|
|
82
|
-
"ag-grid-container ag-theme-alpine
|
|
82
|
+
"ag-grid-container ag-theme-alpine h-[65vh] min-h-[520px] w-full overflow-hidden rounded-xl border border-slate-200 bg-white dark:border-slate-800 dark:bg-slate-900/70";
|
|
83
83
|
|
|
84
84
|
export const gridPageWrapperClass =
|
|
85
|
-
"flex h-full w-full flex-col gap-4
|
|
85
|
+
"flex h-full w-full flex-col gap-4";
|
|
86
86
|
|
|
87
87
|
export const gridHeaderSectionClass =
|
|
88
88
|
"flex shrink-0 items-center justify-between border-b border-slate-200 pb-4 dark:border-slate-800";
|
|
@@ -102,6 +102,6 @@ export const gridFilterSelectClass =
|
|
|
102
102
|
export const gridPrimaryButtonClass =
|
|
103
103
|
"inline-flex items-center gap-2 rounded border border-indigo-600 bg-indigo-600 px-4 py-2 text-sm font-medium text-white transition hover:-translate-y-px hover:border-indigo-700 hover:bg-indigo-700 hover:shadow active:translate-y-0 active:border-indigo-900 active:bg-indigo-900";
|
|
104
104
|
|
|
105
|
-
export const gridContentSectionClass = "flex flex-1 flex-col
|
|
105
|
+
export const gridContentSectionClass = "flex min-h-[560px] flex-1 flex-col gap-3";
|
|
106
106
|
|
|
107
107
|
export const gridEmptyTextClass = "text-sm text-slate-500 dark:text-slate-300";
|