Skip to content

Commit

Permalink
✨ Style buttons and tr colour
Browse files Browse the repository at this point in the history
  • Loading branch information
jnywong committed Nov 26, 2024
1 parent 5720ac3 commit 45a42bf
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
14 changes: 13 additions & 1 deletion frx_challenges/web/static/web/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ nav.navbar {
color: white;
}

.page-header a:hover {
.page-header a.btn-primary:hover {
--bs-btn-hover-color: black;
}

.page-header a:not(.btn-primary):hover {
color: #aaa;
}

Expand All @@ -47,9 +51,17 @@ nav.navbar {
--bs-btn-color: white;
}

.btn-secondary:hover {
--bs-btn-hover-color: white;
}

.table thead {
background-image: linear-gradient(90deg, #058d96 0%, #008a45 100%);
background-position: center center;
background-size: cover;
background-color: #2c5e77;
}

.table th {
color: white;
}
11 changes: 10 additions & 1 deletion frx_challenges/web/static/webpack-output/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -11642,7 +11642,10 @@ nav.navbar {
.page-header a {
color: #fff;
}
.page-header a:hover {
.page-header a.btn-primary:hover {
--bs-btn-hover-color: black;
}
.page-header a:not(.btn-primary):hover {
color: #aaa;
}
.page-header-with-image {
Expand All @@ -11652,9 +11655,15 @@ nav.navbar {
.btn-primary {
--bs-btn-color: white;
}
.btn-secondary:hover {
--bs-btn-hover-color: white;
}
.table thead {
background-image: linear-gradient(90deg, #058d96 0%, #008a45 100%);
background-position: center center;
background-size: cover;
background-color: #2c5e77;
}
.table th {
color: #fff;
}

0 comments on commit 45a42bf

Please sign in to comment.