i have no idea how many changes

This commit is contained in:
2024-03-13 19:14:10 +01:00
parent 1740bf5a70
commit 0bdd90edbe
14 changed files with 194 additions and 54 deletions

View File

@ -548,6 +548,10 @@ video {
margin: 0.25rem;
}
.m-4 {
margin: 1rem;
}
.mx-4 {
margin-left: 1rem;
margin-right: 1rem;
@ -568,6 +572,10 @@ video {
margin-bottom: 0.75rem;
}
.mb-1 {
margin-bottom: 0.25rem;
}
.mb-3 {
margin-bottom: 0.75rem;
}
@ -588,14 +596,34 @@ video {
display: flex;
}
.hidden {
display: none;
}
.h-0 {
height: 0px;
}
.h-12 {
height: 3rem;
}
.h-6 {
height: 1.5rem;
}
.min-h-full {
min-height: 100%;
}
.w-12 {
width: 3rem;
}
.w-6 {
width: 1.5rem;
}
.flex-grow {
flex-grow: 1;
}
@ -608,16 +636,28 @@ video {
align-content: flex-end;
}
.content-around {
align-content: space-around;
.items-center {
align-items: center;
}
.justify-end {
justify-content: flex-end;
}
.justify-around {
justify-content: space-around;
.justify-center {
justify-content: center;
}
.justify-between {
justify-content: space-between;
}
.rounded {
border-radius: 0.25rem;
}
.border {
border-width: 1px;
}
.border-blue-200 {
@ -635,6 +675,15 @@ video {
background-color: rgb(30 64 175 / var(--tw-bg-opacity));
}
.bg-white {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.fill-blue-950 {
fill: #172554;
}
.p-3 {
padding: 0.75rem;
}
@ -649,10 +698,19 @@ video {
padding-right: 1.25rem;
}
.pr-3 {
padding-right: 0.75rem;
}
.text-right {
text-align: right;
}
.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.text-3xl {
font-size: 1.875rem;
line-height: 2.25rem;
@ -694,6 +752,10 @@ video {
font-style: italic;
}
.leading-5 {
line-height: 1.25rem;
}
.text-blue-700 {
--tw-text-opacity: 1;
color: rgb(29 78 216 / var(--tw-text-opacity));
@ -709,6 +771,11 @@ video {
color: rgb(30 58 138 / var(--tw-text-opacity));
}
.text-blue-950 {
--tw-text-opacity: 1;
color: rgb(23 37 84 / var(--tw-text-opacity));
}
.text-gray-600 {
--tw-text-opacity: 1;
color: rgb(75 85 99 / var(--tw-text-opacity));
@ -719,11 +786,6 @@ video {
color: rgb(31 41 55 / var(--tw-text-opacity));
}
.text-blue-600 {
--tw-text-opacity: 1;
color: rgb(37 99 235 / var(--tw-text-opacity));
}
.drop-shadow-md {
--tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
@ -833,8 +895,3 @@ video {
.video-embed {
margin: 1rem;
}
.after\:content-\[\'\2c \'\]::after {
--tw-content: ',';
content: var(--tw-content);
}