fix alignment and flow

Convert some flexbox css to css-grid for perfect alignment and flow
This commit is contained in:
Cody Williams
2022-02-14 00:13:01 -08:00
parent e0c35d15f8
commit 3045740eac

View File

@@ -178,6 +178,18 @@ But we should still update text color because are global whites look bad */
color: #000 !important;
}
/* attempt a grid layout for basic properties */
.basic-properties-widget {
display: grid !important;
grid-template-columns: repeat(auto-fit, minmax(210px, max-content)) !important;
}
/* attempt a grid layout for promoted attributes */
.promoted-attributes-container {
display: grid !important;
grid-template-columns: repeat(auto-fit, minmax(400px, max-content)) !important;
}
/* fix main left bar calendar picker */
body ::-webkit-calendar-picker-indicator {
filter: invert(1);