Fix unit tests (no doctests yet)

This commit is contained in:
Pieter Vander Vennet 2023-02-09 00:10:59 +01:00
parent 325b8831f2
commit 7cc184fdd8
9 changed files with 154 additions and 81 deletions

View file

@ -862,6 +862,10 @@ video {
margin-bottom: 6rem;
}
.ml-1 {
margin-left: 0.25rem;
}
.mb-2 {
margin-bottom: 0.5rem;
}
@ -910,10 +914,6 @@ video {
margin-bottom: 2rem;
}
.ml-1 {
margin-left: 0.25rem;
}
.mb-1 {
margin-bottom: 0.25rem;
}
@ -1027,6 +1027,10 @@ video {
height: 50%;
}
.h-3 {
height: 0.75rem;
}
.h-screen {
height: 100vh;
}
@ -1047,10 +1051,6 @@ video {
height: 0px;
}
.h-3 {
height: 0.75rem;
}
.h-48 {
height: 12rem;
}
@ -1071,6 +1071,10 @@ video {
max-height: 2rem;
}
.min-h-\[8rem\] {
min-height: 8rem;
}
.w-full {
width: 100%;
}
@ -1115,6 +1119,10 @@ video {
width: 0px;
}
.w-3 {
width: 0.75rem;
}
.w-screen {
width: 100vw;
}
@ -1438,11 +1446,6 @@ video {
border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-gray-400 {
--tw-border-opacity: 1;
border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.border-gray-300 {
--tw-border-opacity: 1;
border-color: rgb(209 213 219 / var(--tw-border-opacity));
@ -1458,6 +1461,11 @@ video {
border-color: rgb(132 204 22 / var(--tw-border-opacity));
}
.border-gray-400 {
--tw-border-opacity: 1;
border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.border-blue-500 {
--tw-border-opacity: 1;
border-color: rgb(59 130 246 / var(--tw-border-opacity));
@ -1744,11 +1752,6 @@ video {
letter-spacing: -0.025em;
}
.text-black {
--tw-text-opacity: 1;
color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));
@ -1774,16 +1777,21 @@ video {
color: rgb(22 163 74 / var(--tw-text-opacity));
}
.text-\[\#999\] {
--tw-text-opacity: 1;
color: rgb(153 153 153 / var(--tw-text-opacity));
}
.underline {
text-decoration-line: underline;
}
.line-through {
text-decoration-line: line-through;
.overline {
text-decoration-line: overline;
}
.no-underline {
text-decoration-line: none;
.line-through {
text-decoration-line: line-through;
}
.opacity-50 {
@ -1854,6 +1862,12 @@ video {
transition-duration: 150ms;
}
.transition-\[color\2c background-color\2c box-shadow\] {
transition-property: color,background-color,box-shadow;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.transition-colors {
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@ -2610,6 +2624,11 @@ input {
margin-left: 1.5rem;
}
.hover\:bg-unsubtle:hover {
--tw-bg-opacity: 1;
background-color: rgb(191 219 254 / var(--tw-bg-opacity));
}
.hover\:bg-indigo-200:hover {
--tw-bg-opacity: 1;
background-color: rgb(199 210 254 / var(--tw-bg-opacity));
@ -2630,6 +2649,11 @@ input {
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:bg-unsubtle:hover {
background-color: var(--unsubtle-detail-color);
color: var(--unsubtle-detail-color-contrast);
}
@media (min-width: 640px) {
.sm\:top-3 {
top: 0.75rem;