summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/alert_management/details.scss
blob: 89219e416448cf1aba8aa153b949072e24bdb784 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
.alert-management-details {
  // these styles need to be deleted once GlTable component looks in GitLab same as in @gitlab/ui
  table {
    tr {
      td {
        @include gl-border-0;
        @include gl-p-5;
        border-color: transparent;
        border-bottom: 1px solid $table-border-color;

        &:first-child {
          div {
            font-weight: bold;
          }
        }

        &:not(:first-child) {
          &::before {
            color: $gray-700;
            font-weight: normal !important;
          }

          div {
            color: $gray-700;
          }
        }

        @include media-breakpoint-up(sm) {
          div {
            text-align: left !important;
          }
        }
      }
    }
  }

  @include media-breakpoint-down(xs) {
    .alert-details-create-issue-button {
      width: 100%;
    }
  }
}