diff --git a/frontend/src/components/Chain/Tab.css b/frontend/src/components/Chain/Tab.css
index 9bb4a64f..994fc07e 100644
--- a/frontend/src/components/Chain/Tab.css
+++ b/frontend/src/components/Chain/Tab.css
@@ -31,17 +31,16 @@ along with this program. If not, see .
}
.Chain-Tab:hover {
- background: #FFF;
+ background: #fff;
}
.Chain-Tab-on,
.Chain-Tab-on:hover {
- background: #FFF;
+ background: #fff;
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
color: #000;
}
-
.button-outline {
background-color: white;
/* default background color */
@@ -63,11 +62,10 @@ along with this program. If not, see .
}
.button-outline:hover {
- color: #F5F5F5;
+ color: #f5f5f5;
background: black;
}
-
.button-outline.pressed {
background-color: black;
color: white;
@@ -75,4 +73,4 @@ along with this program. If not, see .
.button-outline.disabled {
cursor: not-allowed;
-}
\ No newline at end of file
+}
diff --git a/frontend/src/components/List/Row.css b/frontend/src/components/List/Row.css
index 0c7810dd..d6e9564b 100644
--- a/frontend/src/components/List/Row.css
+++ b/frontend/src/components/List/Row.css
@@ -26,12 +26,14 @@ along with this program. If not, see .
}
.Row-pinned td:first-child {
- border-left: 3px solid linear-gradient(to right, rgb(51, 140, 245), rgb(79, 209, 197));
+ border-left: 3px solid
+ linear-gradient(to right, rgb(51, 140, 245), rgb(79, 209, 197));
padding-left: 10px;
}
.Row-pinned td:last-child {
- border-right: 3px solid linear-gradient(to right, rgb(51, 140, 245), rgb(79, 209, 197));
+ border-right: 3px solid
+ linear-gradient(to right, rgb(51, 140, 245), rgb(79, 209, 197));
padding-right: 10px;
}