Skip to content

Commit

Permalink
defined typeography (#76)
Browse files Browse the repository at this point in the history
closes #67

Co-authored-by: Claire Olmstead <[email protected]>
  • Loading branch information
claireolmstead and claireolmstead authored Jan 12, 2024
1 parent ef971c9 commit 86f7a31
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions src/style/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,28 @@
.action-card-title {
@apply font-semibold text-2xl;
}

/* typeography */
/* headers */
.section-title {
@apply font-bold text-xl;
}
.label {
@apply font-bold text-base tracking-wide;
}
/* data */
.data-value-sm {
@apply font-data text-green text-sm;
}
.data-value-base {
@apply font-data text-green text-base;
}
.data-value-lg {
@apply font-data text-green text-lg;
}
.data-value-2xl {
@apply font-data text-green text-2xl;
}
}

@layer base {
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default {
xs: '10px',
sm: '12px',
base: '14px',
l: '20px',
lg: '20px',
xl: '25px',
'2xl': '30px',
},
Expand Down

0 comments on commit 86f7a31

Please sign in to comment.