Make the dropdown-menu's max-height apply to all dropdowns

a58b98ba6975505836ed724bc4eb25372eece44d

Tucker McKnight <tmcknight@instructure.com> | Sat Aug 15 2026

Make the dropdown-menu's max-height apply to all dropdowns

Instead of constraining this to just the branch selector menu,
make it apply to all dropdowns on the site. In this case, I want
it to also apply to the dropdown menu on the commits page when choosing
a branch/tag to view a file in.
scss/design-board.scss:225
Before
224
225
226
227

228
229
230
231
232
233
234
    background: $purple;
    color: white;
  }

⁣
  .dropdown-menu {
    min-width: 220px;
    max-height: 80vh;
    overflow-y: scroll;
  }
}

.badge {
After
224
225
226
227
228
229
230
231
232
233
234
    background: $purple;
    color: white;
  }
}

.dropdown-menu {
  min-width: 220px;
  max-height: 80vh;
  overflow-y: scroll;
}

⁣
.badge {