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

tables.scss « generic « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a66e45577de181764870e87bae2937d4b3dd6ccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
table {
  &.table {
    tr {
      td, th {
        padding: 8px 10px;
        line-height: 20px;
        vertical-align: middle;
      }
      th {
        font-weight: normal;
        font-size: 15px;
        border-bottom: 1px solid $border-color !important;
      }
      td {
        border-color: #F1F1F1 !important;
        border-bottom: 1px solid;
      }
    }
  }
}