aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFawn <fangrui_tong@brown.edu>2019-03-11 18:49:17 -0400
committerFawn <fangrui_tong@brown.edu>2019-03-11 18:49:17 -0400
commit4f4e5d96bb58fb50491766b1245db1290cffd6a0 (patch)
tree9a0c28b6eabade86be39307c2d6f415b20d9a24d
parent42e26e6ac81741cabeb5e368c143b7fc591b4686 (diff)
minor kvp ui changes
-rw-r--r--src/client/views/nodes/KeyValueBox.scss11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/client/views/nodes/KeyValueBox.scss b/src/client/views/nodes/KeyValueBox.scss
index 43941f314..f0cd45ac1 100644
--- a/src/client/views/nodes/KeyValueBox.scss
+++ b/src/client/views/nodes/KeyValueBox.scss
@@ -2,6 +2,7 @@
.keyValueBox-cont {
overflow-y: scroll;
height: 100%;
+ background-color: $light-color;
border: 1px solid $intermediate-color;
border-radius: $border-radius;
box-sizing: border-box;
@@ -14,6 +15,9 @@
padding: 6px 8px;
border-right: 1px solid $intermediate-color;
border-top: 1px solid $intermediate-color;
+ &:last-child {
+ border-right: none;
+ }
}
}
@@ -28,9 +32,14 @@
text-transform: uppercase;
letter-spacing: 2px;
font-size: 12px;
- font-weight: normal;
height: 30px;
padding-top: 4px;
+ th {
+ font-weight: normal;
+ &:first-child {
+ border-right: 1px solid $light-color;
+ }
+ }
}
.keyValueBox-evenRow {