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

dashboard_projects.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: 5eced37bed3593ea87ab57517e8685cf0a758458 (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
@import 'mixins_and_variables_and_functions';

.blank-state {
  padding: 20px 50px;
  min-height: 240px;
  width: calc(50% - #{$gl-padding-8});

  @include media-breakpoint-down(sm) {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 50px 20px;
  }
}

.blank-state-link {
  &:hover {
    background-color: var(--gray-50, $gray-10);
    color: var(--gl-text-color, $gl-text-color);
    text-decoration: none;
  }
}

.blank-state-icon {
  svg {
    display: block;
  }
}

.blank-state-body {
  @include media-breakpoint-down(sm) {
    text-align: center;
    margin-top: 20px;
  }
}