Skip to content

Commit

Permalink
Fix inconsistent font weights
Browse files Browse the repository at this point in the history
  • Loading branch information
marcel2215 committed Jun 16, 2024
1 parent cf64826 commit 7001b4d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/wwwroot/css/dopamine.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
}

.switch-label-base {
@apply flex items-center justify-between space-x-4 font-bold transition-all duration-300 ease-in-out select-none sm:space-x-12 dark:text-white;
@apply flex items-center justify-between space-x-4 font-semibold transition-all duration-300 ease-in-out select-none sm:space-x-12 dark:text-white;
}

.switch-label-enabled {
Expand Down Expand Up @@ -124,7 +124,7 @@
}

.checkbox-label-base {
@apply flex items-center justify-start space-x-4 font-bold transition-all duration-300 ease-in-out select-none dark:text-white;
@apply flex items-center justify-start space-x-4 font-semibold transition-all duration-300 ease-in-out select-none dark:text-white;
}

.checkbox-label-enabled {
Expand Down Expand Up @@ -156,7 +156,7 @@
}

.radio-label-base {
@apply flex items-center justify-start space-x-4 font-bold transition-all duration-300 ease-in-out select-none dark:text-white;
@apply flex items-center justify-start space-x-4 font-semibold transition-all duration-300 ease-in-out select-none dark:text-white;
}

.radio-label-enabled {
Expand Down
12 changes: 6 additions & 6 deletions src/wwwroot/css/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ video {
}

.switch-label-enabled {
font-weight: 700;
font-weight: 600;
transition-property: all;
transition-duration: 300ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
Expand Down Expand Up @@ -1247,7 +1247,7 @@ video {
}

.switch-label-disabled {
font-weight: 700;
font-weight: 600;
transition-property: all;
transition-duration: 300ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
Expand Down Expand Up @@ -1626,7 +1626,7 @@ video {
}

.checkbox-label-enabled {
font-weight: 700;
font-weight: 600;
transition-property: all;
transition-duration: 300ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
Expand Down Expand Up @@ -1673,7 +1673,7 @@ video {
}

.checkbox-label-disabled {
font-weight: 700;
font-weight: 600;
transition-property: all;
transition-duration: 300ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
Expand Down Expand Up @@ -1983,7 +1983,7 @@ video {
}

.radio-label-enabled {
font-weight: 700;
font-weight: 600;
transition-property: all;
transition-duration: 300ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
Expand Down Expand Up @@ -2030,7 +2030,7 @@ video {
}

.radio-label-disabled {
font-weight: 700;
font-weight: 600;
transition-property: all;
transition-duration: 300ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
Expand Down

0 comments on commit 7001b4d

Please sign in to comment.