Skip to content

Commit

Permalink
A couple of bug fixes from latest funds work
Browse files Browse the repository at this point in the history
- .nav was too low specificity, meaning we could use .nav anywhere else, but it's needed for multiple bootstrap components
- .purple-grad-bg had an error in its definition
  • Loading branch information
wrightmartin committed Mar 7, 2025
1 parent 24123de commit ecf660f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions app/assets/stylesheets/ecosystems.scss
Original file line number Diff line number Diff line change
Expand Up @@ -346,12 +346,11 @@ body {
li {
padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
}
}

.nav {
@include media-breakpoint-up(lg) {
justify-content: end;
}
.nav {
@include media-breakpoint-up(lg) {
justify-content: end;
}
}
}

.dark-section {
Expand Down Expand Up @@ -513,7 +512,7 @@ body {

.purple-grad-bg {
background-color: $color-purple-dark;
background: linear-gradient(0deg, $color-purple-dark 50%, $color-purple 100%);
background: linear-gradient(0deg, $color-purple-dark 0%, $color-purple 50%);
color: $color-white;
}

Expand Down

0 comments on commit ecf660f

Please sign in to comment.