Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
125 changes: 36 additions & 89 deletions global/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,14 @@ Ensure the default browser behavior of the `hidden` attribute.
right: 0.75rem;
}

.left-1 {
left: 0.25rem;
}

.top-1 {
top: 0.25rem;
}

.right-0 {
right: 0px;
}
Expand Down Expand Up @@ -658,6 +666,10 @@ Ensure the default browser behavior of the `hidden` attribute.
margin-right: 1.75rem;
}

.mb-12 {
margin-bottom: 3rem;
}

.mr-4 {
margin-right: 1rem;
}
Expand Down Expand Up @@ -786,24 +798,12 @@ Ensure the default browser behavior of the `hidden` attribute.
height: 3rem;
}

.h-20 {
height: 5rem;
}

.h-28 {
height: 7rem;
}

.h-16 {
height: 4rem;
}

.h-14 {
height: 3.5rem;
}

.h-24 {
height: 6rem;
.h-20 {
height: 5rem;
}

.min-h-screen {
Expand All @@ -830,14 +830,18 @@ Ensure the default browser behavior of the `hidden` attribute.
width: 2rem;
}

.w-96 {
width: 24rem;
}

.w-6 {
width: 1.5rem;
}

.w-16 {
width: 4rem;
}

.w-14 {
width: 3.5rem;
}

.w-44 {
width: 11rem;
}
Expand All @@ -858,44 +862,16 @@ Ensure the default browser behavior of the `hidden` attribute.
width: 16rem;
}

.w-20 {
width: 5rem;
}

.w-1\/2 {
width: 50%;
}

.w-28 {
width: 7rem;
}

.w-40 {
width: 10rem;
}

.w-36 {
width: 9rem;
}

.w-16 {
width: 4rem;
}

.w-14 {
width: 3.5rem;
}

.w-1\/6 {
width: 16.666667%;
}

.w-24 {
width: 6rem;
.w-20 {
width: 5rem;
}

.w-72 {
width: 18rem;
.w-1\/2 {
width: 50%;
}

.min-w-full {
Expand Down Expand Up @@ -1041,18 +1017,18 @@ Ensure the default browser behavior of the `hidden` attribute.
gap: 0.25rem;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
--tw-space-x-reverse: 0;
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
Expand Down Expand Up @@ -1154,10 +1130,6 @@ Ensure the default browser behavior of the `hidden` attribute.
border-bottom-width: 2px;
}

.border-t-2 {
border-top-width: 2px;
}

.border-none {
border-style: none;
}
Expand Down Expand Up @@ -1226,16 +1198,6 @@ Ensure the default browser behavior of the `hidden` attribute.
border-color: rgb(107 114 128 / var(--tw-border-opacity));
}

.border-gray-400 {
--tw-border-opacity: 1;
border-color: rgb(156 163 175 / var(--tw-border-opacity));
}

.border-gray-600 {
--tw-border-opacity: 1;
border-color: rgb(75 85 99 / var(--tw-border-opacity));
}

.bg-white {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
Expand Down Expand Up @@ -1294,11 +1256,6 @@ Ensure the default browser behavior of the `hidden` attribute.
background-color: rgb(2 132 199 / var(--tw-bg-opacity));
}

.bg-violet-50 {
--tw-bg-opacity: 1;
background-color: rgb(245 243 255 / var(--tw-bg-opacity));
}

.bg-sky-100 {
--tw-bg-opacity: 1;
background-color: rgb(224 242 254 / var(--tw-bg-opacity));
Expand All @@ -1309,16 +1266,6 @@ Ensure the default browser behavior of the `hidden` attribute.
background-color: rgb(224 231 255 / var(--tw-bg-opacity));
}

.bg-gray-300 {
--tw-bg-opacity: 1;
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}

.bg-gray-400 {
--tw-bg-opacity: 1;
background-color: rgb(156 163 175 / var(--tw-bg-opacity));
}

.bg-opacity-75 {
--tw-bg-opacity: 0.75;
}
Expand Down Expand Up @@ -1445,10 +1392,6 @@ Ensure the default browser behavior of the `hidden` attribute.
padding-bottom: 0.5rem;
}

.pt-10 {
padding-top: 2.5rem;
}

.pl-2 {
padding-left: 0.5rem;
}
Expand Down Expand Up @@ -1501,6 +1444,10 @@ Ensure the default browser behavior of the `hidden` attribute.
padding-bottom: 1.5rem;
}

.pt-10 {
padding-top: 2.5rem;
}

.pt-2 {
padding-top: 0.5rem;
}
Expand Down
Loading