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: 60aa3c8f29fa4d4565f14462aecbb4cb7135da22 (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
@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 {
  @include media-breakpoint-down(md) {
    width: 100%;
  }
  width: 50%;
}

.new-namespace-panel {
  &:hover {
    background-color: $gray-10;
  }

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