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

_utilities.scss « stylesheets « assets « content - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8c1a5b4643c4e72015fd8bf5f9c4b4eeb611e1b (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
33
34
35
36
37
---
version: 6
---

@import 'variables';

@mixin sidebar-fixed {
  overflow: auto;
  position: sticky;
  top: 0;
  height: 100vh;
  min-width: $sidebar-width;
}

@mixin code-color {
  color: $code-color;
  background-color: $code-background-color;
}

@mixin code-styles {
  @include code-color;
  word-wrap: normal;
  word-break: normal;
  white-space: pre;
}

.text-decoration-underline {
  text-decoration: underline;
}

.gl-font-base {
  font-size: 1rem;
}

.gl-w-3 {
  width: 1rem;
}