dev works

This commit is contained in:
2021-12-25 19:44:18 +01:00
parent c56323c7a6
commit 7be6494431
12 changed files with 120 additions and 123 deletions

View File

@ -465,6 +465,10 @@ Ensure the default browser behavior of the `hidden` attribute.
position: static;
}
.relative {
position: relative;
}
.mt-0 {
margin-top: 0px;
}
@ -525,6 +529,10 @@ Ensure the default browser behavior of the `hidden` attribute.
border-radius: 0.25rem;
}
.\!rounded-md {
border-radius: 0.375rem !important;
}
.border-2 {
border-width: 2px;
}
@ -545,10 +553,24 @@ Ensure the default browser behavior of the `hidden` attribute.
border-color: var(--color-primary-500);
}
.bg-primary-600 {
background-color: var(--color-primary-600);
}
.p-4 {
padding: 1rem;
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.py-2 {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.pb-2 {
padding-bottom: 0.5rem;
}
@ -561,6 +583,10 @@ Ensure the default browser behavior of the `hidden` attribute.
text-align: center;
}
.align-text-bottom {
vertical-align: text-bottom;
}
.text-4xl {
font-size: 2.25rem;
line-height: 2.5rem;
@ -583,10 +609,31 @@ Ensure the default browser behavior of the `hidden` attribute.
color: var(--color-neutral-900);
}
.\!text-neutral {
color: var(--color-neutral) !important;
}
.\!no-underline {
-webkit-text-decoration-line: none !important;
text-decoration-line: none !important;
}
.hover\:\!bg-primary-500:hover {
background-color: var(--color-primary-500) !important;
}
.dark .dark\:bg-primary-800 {
background-color: var(--color-primary-800);
}
.dark .dark\:text-neutral {
color: var(--color-neutral);
}
.dark .dark\:hover\:\!bg-primary-700:hover {
background-color: var(--color-primary-700) !important;
}
@media (min-width: 768px) {
.md\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));