aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 {