only change code-box-inline bg

This commit is contained in:
pat-s 2024-12-18 14:18:51 +01:00
parent c6d78971ff
commit a527b4d4d7
No known key found for this signature in database
GPG key ID: 3C6318841EF78925

View file

@ -103,7 +103,7 @@ body,
} }
.vue-notification { .vue-notification {
@apply rounded-md text-base border-l-6; @apply border-l-6 rounded-md text-base;
} }
.vue-notification .notification-title { .vue-notification .notification-title {
@ -129,7 +129,7 @@ body,
*::-webkit-scrollbar-thumb { *::-webkit-scrollbar-thumb {
transition: background 0.2s ease-in-out; transition: background 0.2s ease-in-out;
border: 3px solid transparent; border: 3px solid transparent;
@apply bg-cool-gray-200 dark:bg-dark-200 rounded-full bg-clip-content; @apply bg-clip-content bg-cool-gray-200 dark:bg-dark-200 rounded-full;
} }
*::-webkit-scrollbar-thumb:hover { *::-webkit-scrollbar-thumb:hover {
@ -141,11 +141,11 @@ body,
} }
.code-box { .code-box {
@apply bg-wp-code-bg-100 p-4 rounded-md text-wp-code-text-100 text-sm break-words; @apply bg-wp-code-200 p-4 rounded-md text-sm text-wp-code-text-100 break-words;
white-space: pre-wrap; white-space: pre-wrap;
} }
.code-box-inline, .code-box-inline,
code:not(pre > code) { code:not(pre > code) {
@apply bg-wp-code-custom rounded-lg text-wp-code-text-100 px-1.5 py-0.5; @apply bg-wp-code-custom px-1.5 py-0.5 rounded-lg text-wp-code-text-100;
} }