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

tmp_utilities.scss « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96464aa5a39c697ca9852d83fa5cd9e84d2e7de4 (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
/**
 * DISCLAIMER
 * This is a temporary stylesheet meant to assist in migrating away from desktop-first responsive
 * CSS utilities.
 * DO NOT add utils in here unless you are actively taking part in in the migration.
 * We needed this new file for temporary utils to be defined _after_ the main, non-responsive
 * GitLab UI util.
 * This file is scheduled to be removed by the end of 2023.
 */
 .gl-sm-w-25p {
  @include gl-media-breakpoint-up(sm) {
    width: 25%;
  }
}

.gl-sm-w-30p {
  @include gl-media-breakpoint-up(sm) {
    width: 30%;
  }
}

.gl-sm-w-40p {
  @include gl-media-breakpoint-up(sm) {
    width: 40%;
  }
}

.gl-sm-w-75p {
  @include gl-media-breakpoint-up(sm) {
    width: 75%;
  }
}