detail_page.scss 553 Bytes
Newer Older
1
.detail-page-header {
2
  padding: 11px 0;
3 4 5
  border-bottom: 1px solid $border-color;
  color: #5c5d5e;
  font-size: 16px;
Andriy Dyadyura's avatar
Andriy Dyadyura committed
6
  line-height: 34px;
7 8 9 10 11 12 13 14

  .author {
    color: #5c5d5e;
  }

  .identifier {
    color: #5c5d5e;
  }
15

16
  .issue_created_ago, .author_link {
17 18
    white-space: nowrap;
  }
19 20

  .issue-meta {
21
    display: inline-block;
22
    line-height: 20px;
23
  }
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
}

.detail-page-description {
  .title {
    margin: 0;
    font-size: 23px;
    color: #313236;
  }

  .description {
    margin-top: 6px;

    p:last-child {
      margin-bottom: 0;
    }
  }
}