Skip to content

Commit

Permalink
fix prettier error
Browse files Browse the repository at this point in the history
  • Loading branch information
jb1011 committed Jan 11, 2024
1 parent 21b3ec3 commit b127e39
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 4 additions & 6 deletions frontend/src/components/Chain/Tab.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,16 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
}

.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 */
Expand All @@ -63,16 +62,15 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
}

.button-outline:hover {
color: #F5F5F5;
color: #f5f5f5;
background: black;
}


.button-outline.pressed {
background-color: black;
color: white;
}

.button-outline.disabled {
cursor: not-allowed;
}
}
6 changes: 4 additions & 2 deletions frontend/src/components/List/Row.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
}

.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;
}

Expand Down

0 comments on commit b127e39

Please sign in to comment.