aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/CollectionSchemaView.scss
diff options
context:
space:
mode:
authormehekj <mehek.jethani@gmail.com>2022-08-16 18:10:15 -0400
committermehekj <mehek.jethani@gmail.com>2022-08-16 18:10:15 -0400
commitfb1e291b1bed4b60a645030b4a79c0760ba73fdc (patch)
tree9ee64096b9231373743dc8714e2f6b891a14edce /src/client/views/collections/collectionSchema/CollectionSchemaView.scss
parenta20a40b86bf5df9200218cb713f48e593c41b0ae (diff)
add and remove columns (remove buggy for same named headers)
Diffstat (limited to 'src/client/views/collections/collectionSchema/CollectionSchemaView.scss')
-rw-r--r--src/client/views/collections/collectionSchema/CollectionSchemaView.scss40
1 files changed, 27 insertions, 13 deletions
diff --git a/src/client/views/collections/collectionSchema/CollectionSchemaView.scss b/src/client/views/collections/collectionSchema/CollectionSchemaView.scss
index 4f644717b..83164a82a 100644
--- a/src/client/views/collections/collectionSchema/CollectionSchemaView.scss
+++ b/src/client/views/collections/collectionSchema/CollectionSchemaView.scss
@@ -27,6 +27,10 @@
.schema-column-header {
font-weight: bold;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ align-items: center;
}
}
@@ -37,19 +41,6 @@
display: flex;
flex-direction: row;
justify-content: center;
-
- .row-button {
- width: 25px;
- height: 25px;
- border-radius: 100%;
- background-color: $dark-gray;
- color: white;
- margin: 3px;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- }
}
.row-cells {
@@ -58,5 +49,28 @@
justify-content: flex-end;
}
}
+
+ .schema-header-menu {
+ display: flex;
+ flex-direction: row;
+ }
+
+ .row-button,
+ .schema-header-button {
+ width: 20px;
+ height: 20px;
+ border-radius: 100%;
+ background-color: $dark-gray;
+ color: white;
+ margin: 3px;
+ cursor: pointer;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+
+ svg {
+ width: 12px;
+ }
+ }
}
}