better handling of the auto theme to prevent further bugs with it

This commit is contained in:
Bnyro
2022-10-06 19:58:31 +02:00
parent 7ffa8b2cfe
commit c7595049bd
4 changed files with 8 additions and 37 deletions

View File

@@ -108,10 +108,6 @@ b {
@apply text-black bg-white;
}
.auto {
@apply dark:(text-white bg-dark-900);
}
.dark {
@apply text-white bg-dark-900;
}
@@ -137,12 +133,6 @@ b {
@apply text-gray-400 bg-dark-400;
}
.auto .input,
.auto .select,
.auto .btn {
@apply dark:(text-gray-400 bg-dark-400);
}
.input {
@apply pl-2.5;
}
@@ -160,10 +150,6 @@ hr {
@apply border-dark-100;
}
.auto hr {
@apply dark:border-dark-100;
}
h1,
h2 {
@apply m-0 font-bold;
@@ -193,18 +179,10 @@ h2 {
@apply hover:(text-gray-300 underline underline-gray-300);
}
.auto .link {
@apply dark:hover:(text-gray-300 underline underline-gray-300);
}
.dark .link-secondary {
@apply text-gray-300 hover:(text-gray-400 underline underline-gray-400);
}
.auto .link-secondary {
@apply dark:(text-gray-300 hover:(text-gray-400 underline underline-gray-400));
}
.line {
@apply px-2.5 py-0.25 my-0.45 rounded-xl bg-dark-900;
}
@@ -212,8 +190,4 @@ h2 {
.dark .line {
@apply bg-white;
}
.auto .line {
@apply dark:(bg-white);
}
</style>