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

feature_highlight.scss « components « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54123e74675598406e9891b92282b0a7d6634177 (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
.gl-badge.feature-highlight-badge {
  background-color: $purple-light;
  color: $purple;

  &,
  &.sm {
    padding: 0.25rem;
  }
}

.gl-order-1 {
  order: 1;
}

.gl-sm-order-init {
  @media (min-width: $breakpoint-sm) {
    order: initial;
  }
}

.gl-xs-ml-3 {
  @media (max-width: $breakpoint-sm) {
    @include gl-ml-3;
  }
}

.gl-sm-mr-3 {
  @media (min-width: $breakpoint-sm) {
    @include gl-mr-3;
  }
}