update header

This commit is contained in:
Dede Fuji Abdul
2023-10-16 16:51:22 +07:00
parent 7c6a28b98d
commit 1080aeca75
5 changed files with 140 additions and 67 deletions

View File

@ -1081,6 +1081,18 @@ select {
height: 80vh;
}
.h-\[calc\(100\%-56px\)\] {
height: calc(100% - 56px);
}
.h-\[calc\(100\%-60px\)\] {
height: calc(100% - 60px);
}
.h-\[calc\(100\%-64px\)\] {
height: calc(100% - 64px);
}
.max-h-0 {
max-height: 0px;
}
@ -1093,6 +1105,10 @@ select {
max-height: 1000px;
}
.max-h-full {
max-height: 100%;
}
.min-h-0 {
min-height: 0px;
}
@ -1205,6 +1221,10 @@ select {
width: 100vw;
}
.w-\[200px\] {
width: 200px;
}
.min-w-0 {
min-width: 0px;
}
@ -1501,6 +1521,10 @@ select {
border-radius: 0.75rem;
}
.rounded-3xl {
border-radius: 1.5rem;
}
.rounded-l-full {
border-top-left-radius: 9999px;
border-bottom-left-radius: 9999px;
@ -1511,6 +1535,11 @@ select {
border-bottom-right-radius: 9999px;
}
.rounded-t-3xl {
border-top-left-radius: 1.5rem;
border-top-right-radius: 1.5rem;
}
.border {
border-width: 1px;
}
@ -1718,6 +1747,11 @@ select {
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-secondary-100 {
--tw-bg-opacity: 1;
background-color: rgb(204 235 239 / var(--tw-bg-opacity));
}
.bg-opacity-25 {
--tw-bg-opacity: 0.25;
}
@ -2179,6 +2213,11 @@ select {
color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-primary-50 {
--tw-text-opacity: 1;
color: rgb(230 239 241 / var(--tw-text-opacity));
}
.text-opacity-100 {
--tw-text-opacity: 1;
}
@ -2987,6 +3026,10 @@ select {
margin-right: 1.5rem;
}
.md\:mr-4 {
margin-right: 1rem;
}
.md\:block {
display: block;
}
@ -3007,6 +3050,14 @@ select {
width: 20rem;
}
.md\:w-\[200px\] {
width: 200px;
}
.md\:w-\[300px\] {
width: 300px;
}
.md\:max-w-\[220px\] {
max-width: 220px;
}
@ -3023,6 +3074,11 @@ select {
flex-direction: column;
}
.md\:bg-primary-500 {
--tw-bg-opacity: 1;
background-color: rgb(3 91 113 / var(--tw-bg-opacity));
}
.md\:p-20 {
padding: 5rem;
}
@ -3037,6 +3093,21 @@ select {
padding-bottom: 1.5rem;
}
.md\:px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
.md\:py-1 {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
.md\:px-1 {
padding-left: 0.25rem;
padding-right: 0.25rem;
}
.md\:pl-80 {
padding-left: 20rem;
}