1.dropdown-item {
2  padding-left: $spacer/2;
3}
4
5.b-dropdown-form {
6  padding: $spacer/2;
7  .form-group {
8    margin-bottom: $spacer/2;
9  }
10}
11
12// Adding component style to global stylesheet because
13// single-file component scoped styles aren't
14// being applied to dynamically appended elements
15// The overflow menu should be above the table
16
17.table-filter {
18  .dropdown-menu {
19    z-index: $zindex-dropdown + 1;
20    padding: 0;
21  }
22}