minor ui adjustments
This commit is contained in:
@@ -16,7 +16,10 @@
|
||||
let codeEditorComponent;
|
||||
let isCodeEditorComponentLoading = false;
|
||||
|
||||
$: presetColumns = collection?.schema?.filter((f) => !f.toDelete)?.map((f) => f.name) || [];
|
||||
$: presetColumns = (collection?.schema?.filter((f) => !f.toDelete)?.map((f) => f.name) || []).concat([
|
||||
"created",
|
||||
"updated",
|
||||
]);
|
||||
|
||||
$: indexParts = CommonHelper.parseIndex(index);
|
||||
|
||||
|
||||
@@ -144,6 +144,9 @@ table {
|
||||
.col-type-text {
|
||||
max-width: 300px;
|
||||
}
|
||||
.col-type-editor {
|
||||
min-width: 250px;
|
||||
}
|
||||
.col-type-select {
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
@@ -64,9 +64,9 @@
|
||||
--activeAnimationSpeed: 70ms;
|
||||
--entranceAnimationSpeed: 250ms;
|
||||
|
||||
--baseRadius: 6px;
|
||||
--baseRadius: 4px;
|
||||
--lgRadius: 12px;
|
||||
--btnRadius: 6px;
|
||||
--btnRadius: 4px;
|
||||
|
||||
// https://developer.mozilla.org/en-US/docs/Web/CSS/accent-color
|
||||
accent-color: var(--primaryColor);
|
||||
|
||||
Reference in New Issue
Block a user