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

_spacing.scss « mixins « stylesheets « assets « content - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc36a69603e4ee75152b43c6c0415284d2a28ea0 (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
---
version: 2
---

/**
* Margin utilities.
*
* naming convention: gl-m{position}-{spacing-scale-index}
* notes:
* - Utilities should strictly follow $gl-spacing-scale
*/

@mixin gl-mt-0 {
  margin-top: 0;
}

@mixin gl-mt-5 {
  margin-top: $gl-spacing-scale-5;
}

@mixin gl-mt-6 {
  margin-top: $gl-spacing-scale-6;
}

@mixin gl-mb-0 {
  margin-bottom: 0;
}

@mixin gl-mb-3 {
  margin-bottom: $gl-spacing-scale-3;
}