Refactoring: fix import buttons (WIP)

This commit is contained in:
Pieter Vander Vennet 2023-05-30 02:52:22 +02:00
parent 52b54d8b08
commit 8f942f0163
28 changed files with 970 additions and 779 deletions

View file

@ -981,6 +981,14 @@ video {
height: 100%;
}
.h-screen {
height: 100vh;
}
.h-32 {
height: 8rem;
}
.h-8 {
height: 2rem;
}
@ -989,10 +997,6 @@ video {
height: 4rem;
}
.h-32 {
height: 8rem;
}
.h-12 {
height: 3rem;
}
@ -1001,10 +1005,6 @@ video {
height: 1.5rem;
}
.h-screen {
height: 100vh;
}
.h-4 {
height: 1rem;
}
@ -1075,8 +1075,8 @@ video {
width: 100%;
}
.w-1\/2 {
width: 50%;
.w-32 {
width: 8rem;
}
.w-8 {
@ -1087,10 +1087,6 @@ video {
width: 4rem;
}
.w-32 {
width: 8rem;
}
.w-12 {
width: 3rem;
}
@ -1137,6 +1133,10 @@ video {
width: 16rem;
}
.w-1\/2 {
width: 50%;
}
.w-96 {
width: 24rem;
}
@ -1257,6 +1257,10 @@ video {
flex-direction: column;
}
.flex-col-reverse {
flex-direction: column-reverse;
}
.flex-wrap {
flex-wrap: wrap;
}
@ -1449,11 +1453,6 @@ video {
border-style: dotted;
}
.border-gray-500 {
--tw-border-opacity: 1;
border-color: rgb(107 114 128 / var(--tw-border-opacity));
}
.border-black {
--tw-border-opacity: 1;
border-color: rgb(0 0 0 / var(--tw-border-opacity));
@ -1484,6 +1483,11 @@ video {
border-color: rgb(75 85 99 / var(--tw-border-opacity));
}
.border-gray-500 {
--tw-border-opacity: 1;
border-color: rgb(107 114 128 / var(--tw-border-opacity));
}
.border-opacity-50 {
--tw-border-opacity: 0.5;
}
@ -1528,14 +1532,14 @@ video {
background-color: rgb(254 202 202 / var(--tw-bg-opacity));
}
.p-1 {
padding: 0.25rem;
}
.p-8 {
padding: 2rem;
}
.p-1 {
padding: 0.25rem;
}
.p-2 {
padding: 0.5rem;
}