Skip to content

Commit

Permalink
fix: update typography
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmatthew committed Apr 22, 2021
1 parent ea8bd62 commit 061d9b2
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/assets/css/talis.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/css/talis.css.map

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions scss/_badges.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,21 @@
@extend .badge;
}

.label-primary {
background-color: $primary;
color: $white;
}

.label-danger {
background-color: $danger;
color: $white;
}

.label-warning {
background-color: $warning;
color: $black;
}

.badge-default,
.label-default {
background-color: #AAD0D0;
Expand Down
76 changes: 76 additions & 0 deletions scss/_typography.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.alpha,
.beta,
.gamma,
.delta,
.epsilon,
.zeta {
line-height: 1.1;
}

h1,
h2,
h3 {
margin-top: 20px;
margin-bottom: 10px;
}

h4,
.h4,
.delta,
h5,
.h5,
.epsilon,
h6,
.h6,
.zeta {
margin-top: 10px;
margin-bottom: 10px;
}

h1,
.h1,
.alpha,
h3,
.h3,
.gamma,
h5,
.h5,
.epsilon {
color: $black;
}

h2,
.h2,
.beta,
h4,
.h4,
.delta {
color: $gray-600;
}

h5,
.h5,
.epsilon,
h6,
.h6,
.zeta {
font-weight: 700;
}

h6,
.h6,
.zeta {
color: $gray-700;
}
1 change: 1 addition & 0 deletions scss/talis.scss
Original file line number Diff line number Diff line change
Expand Up @@ -211,3 +211,4 @@ $table-group-separator-color: $gray-200;
@import 'pager';
@import 'pagination';
@import 'tables';
@import 'typography';

0 comments on commit 061d9b2

Please sign in to comment.