Welcome to mirror list, hosted at ThFree Co, Russian Federation.

incident_management_list.scss « page_bundles « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecfc481bb4458ec0125ebddb5641d4998833470e (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
@import 'mixins_and_variables_and_functions';

.incident-management-list {
  .new-alert {
    background-color: var(--green-50, $green-50);
  }

  .gl-tabs-nav {
    @include gl-border-b-0;

    .gl-tab-nav-item {
      color: var(--gray-500, $gray-500);

      > .gl-tab-counter-badge {
        @include gl-reset-color;
        font-size: $gl-font-size-sm;
        background-color: var(--gray-50, $gray-50);
      }
    }
  }

  @include media-breakpoint-down(xs) {
    .list-header {
      @include gl-flex-direction-column-reverse;
    }

    .create-incident-button {
      width: 100%;
    }
  }
}