🐛 fixes cancel button in dark mode

This commit is contained in:
Greg Newman
2023-11-02 10:45:48 -04:00
parent 422c710097
commit f96839db09
2 changed files with 5 additions and 9 deletions

View File

@@ -1510,10 +1510,6 @@ code,
margin-left: 1rem;
}
.-ml-1 {
margin-left: -0.25rem;
}
.block {
display: block;
}
@@ -3618,14 +3614,14 @@ code,
border-left-width: 0px;
}
.md\:border-b-0 {
border-bottom-width: 0px;
}
.md\:border-l-2 {
border-left-width: 2px;
}
.md\:border-b-0 {
border-bottom-width: 0px;
}
.md\:border-orange {
--tw-border-opacity: 1;
border-color: rgb(255 159 0 / var(--tw-border-opacity));

View File

@@ -13,7 +13,7 @@
<div class="mt-4 text-right">
{% if cancel_url %}
<a class="py-2 px-3 text-sm text-black rounded" href="{{ cancel_url }}">
<a class="py-2 px-3 text-sm text-black dark:text-white rounded" href="{{ cancel_url }}">
Cancel
</a>
{% endif %}