summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/issues/issue_count_badge.scss
blob: ccb62bfed188439f37f92ca37b95cddb223c199c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.issue-count-badge {
  display: inline-flex;
  align-items: stretch;
  height: 24px;
}

.issue-count-badge-count {
  display: flex;
  align-items: center;
  padding-right: 10px;
  padding-left: 10px;
  border: 1px solid $border-color;
  border-radius: $border-radius-base;
  line-height: 1;

  &.has-btn {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.issue-count-badge-add-button {
  display: flex;
  align-items: center;
  border: 1px solid $border-color;
  border-radius: 0 $border-radius-base $border-radius-base 0;
  line-height: 1;
}