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

page_header.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad183a64cc56d20a6bc20e6567fe22bcdb45b6e7 (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
.page-content-header {
  line-height: 34px;
  padding: 10px 0;
  margin-bottom: 0;

  @include media-breakpoint-up(sm) {
    display: flex;
    align-items: center;

    .header-main-content {
      flex: 1;
    }
  }

  .avatar {
    float: none;
    display: inline-block;
    margin-left: 2px;
    flex-shrink: 0;

    @include media-breakpoint-up(sm) {
      margin-left: 4px;
    }
  }

  .commit-committer-link,
  .commit-author-link {
    color: $gl-text-color;
    font-weight: $gl-font-weight-bold;
  }

  .commit-info {
    &.branches {
      margin-left: 8px;
    }
  }
}