Skip to content

Commit

Permalink
✨ Add styling to thead
Browse files Browse the repository at this point in the history
  • Loading branch information
jnywong committed Nov 26, 2024
1 parent 37d20d4 commit 5720ac3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions frx_challenges/web/static/web/bootstrap-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ $theme-colors: map-merge(

$link-color: $primary;
$link-decoration: none;
$table-bg: #ffffff00;

// set changes
@import "bootstrap";
7 changes: 7 additions & 0 deletions frx_challenges/web/static/web/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,10 @@ nav.navbar {
.btn-primary {
--bs-btn-color: white;
}

.table thead {
background-image: linear-gradient(90deg, #058d96 0%, #008a45 100%);
background-position: center center;
background-size: cover;
background-color: #2c5e77;
}
8 changes: 7 additions & 1 deletion frx_challenges/web/static/webpack-output/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1767,7 +1767,7 @@ progress {
--bs-table-color-state: initial;
--bs-table-bg-state: initial;
--bs-table-color: var(--bs-emphasis-color);
--bs-table-bg: var(--bs-body-bg);
--bs-table-bg: rgba(255, 255, 255, 0);
--bs-table-border-color: var(--bs-border-color);
--bs-table-accent-bg: transparent;
--bs-table-striped-color: var(--bs-emphasis-color);
Expand Down Expand Up @@ -11652,3 +11652,9 @@ nav.navbar {
.btn-primary {
--bs-btn-color: white;
}
.table thead {
background-image: linear-gradient(90deg, #058d96 0%, #008a45 100%);
background-position: center center;
background-size: cover;
background-color: #2c5e77;
}

0 comments on commit 5720ac3

Please sign in to comment.