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

new_namespace.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: 37a1231ec6bba6d0430e9fc82de7dd37adb42ab5 (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
@import 'mixins_and_variables_and_functions';

$new-namespace-panel-illustration-width: 215px;
$new-namespace-panel-height: 240px;

.new-namespace-panel-illustration {
  width: $new-namespace-panel-illustration-width;
}

.new-namespace-panel-wrapper {
  width: 50%;

  @include media-breakpoint-down(lg) {
    width: 100%;
  }
}

.new-namespace-panel {
  &:hover {
    background-color: var(--gray-50, $gray-10);
  }

  color: var(--purple-700, $purple-700);
  min-height: $new-namespace-panel-height;
  text-align: center;
  @include media-breakpoint-up(lg) {
    text-align: left;
  }
}