Skip to content

Commit

Permalink
Fixes table row hover style & firebase config
Browse files Browse the repository at this point in the history
  • Loading branch information
ubbn committed Dec 12, 2023
1 parent ca3323d commit 8f41861
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
8 changes: 7 additions & 1 deletion firebase.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"hosting": {
"public": "frontend/dist",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
9 changes: 5 additions & 4 deletions frontend/src/components/neuron/table/styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,11 @@ const ITableStyled = styled.div`
td {
border: 1px solid lightgray;
padding: 1px 2px;
:hover {
background-color: #f5f5f5;
color: #7700ff;
}
}
tr:hover td {
background-color: #f5f5f5;
color: #7700ff;
}
.subjectCell {
Expand Down

0 comments on commit 8f41861

Please sign in to comment.