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

error_tracking_index.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: 4baab693aed12d7d5a834d34ecf079e198577700 (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
@import 'page_bundles/mixins_and_variables_and_functions';

.error-list {
  .filtered-search-box .form-control {
    min-width: unset;
  }

  @include media-breakpoint-down(sm) {
    .error-list-table {
      td {
        min-height: 68px;

        &:last-child {
          background-color: var(--gray-10, $gray-10);

          &::before {
            content: none !important;
          }

          div {
            width: 100% !important;
            padding: 0 !important;
          }
        }
      }
    }
  }
}