Fix Bold Markings on Secondary and Brand type text

This commit is contained in:
Lorenz Padberg 2024-03-18 13:29:23 +01:00
parent 0abfcafd41
commit a28c9e7edb
2 changed files with 9 additions and 12 deletions

View File

@ -261,13 +261,6 @@ const unmark = () => {
line-height: 1.5;
}
& b {
font-weight: 600;
& mark {
font-weight: 600;
}
}
.brand {
color: $color-brand;
font-weight: 600;

View File

@ -37,11 +37,6 @@ a {
box-sizing: border-box;
}
b,
b mark {
font-weight: bold;
}
h1 {
font-size: 2rem;
font-weight: 800;
@ -111,3 +106,12 @@ sub {
font-family: $sans-serif-font-family;
color: $color-brand-dark;
}
b,
b mark {
font-weight: bold;
}
.secondary mark , .brand mark{
font-weight: bold;
}