summaryrefslogtreecommitdiff
path: root/src/assets/styles/vendor-overrides/bootstrap/_dropdown.scss
blob: 0eb310f605ecf5f2c04128c4e7efbf8b161d91df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.dropdown-item {
  padding-left: $spacer/2;
}

.b-dropdown-form {
  padding: $spacer/2;
  .form-group {
    margin-bottom: $spacer/2;
  }
}

.table-filter {
  // Adding component style to global stylesheet because
  // single-file component scoped styles aren't
  // being applied to dynamically appended elements
  // The overflow menu should be above the table
  .dropdown-menu {
    z-index: $zindex-dropdown + 1;
    padding: 0;
  }
}