1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-03 17:13:47 +00:00

[PM-26984] Use medium instead of semibold or bold, and for headings (#17184)

This commit is contained in:
Vicki League
2025-11-10 17:11:35 -05:00
committed by GitHub
parent c25cd63022
commit c22cba76ec
10 changed files with 30 additions and 22 deletions

View File

@@ -14,22 +14,22 @@
}
h1 {
@apply tw-text-3xl tw-text-main tw-mb-2;
@apply tw-text-3xl tw-text-main tw-mb-2 tw-font-medium;
}
h2 {
@apply tw-text-2xl tw-text-main tw-mb-2;
@apply tw-text-2xl tw-text-main tw-mb-2 tw-font-medium;
}
h3 {
@apply tw-text-xl tw-text-main tw-mb-2;
@apply tw-text-xl tw-text-main tw-mb-2 tw-font-medium;
}
h4 {
@apply tw-text-lg tw-text-main tw-mb-2;
@apply tw-text-lg tw-text-main tw-mb-2 tw-font-medium;
}
h5 {
@apply tw-text-base tw-text-main tw-mb-1.5;
@apply tw-text-base tw-text-main tw-mb-1.5 tw-font-medium;
}
h6 {
@apply tw-text-sm tw-text-main tw-mb-1.5;
@apply tw-text-sm tw-text-main tw-mb-1.5 tw-font-medium;
}
code {
@@ -82,4 +82,12 @@
th {
@apply tw-font-medium;
}
b {
@apply tw-font-medium;
}
strong {
@apply tw-font-medium;
}
}