Skip to content

Commit 1957e0c

Browse files
committed
updated tailwindcss configuration
1 parent a4d2848 commit 1957e0c

File tree

4 files changed

+226
-19
lines changed

4 files changed

+226
-19
lines changed

composer.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/app.css

Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -519,6 +519,12 @@ video {
519519
white-space: nowrap;
520520
border-width: 0;
521521
}
522+
.relative {
523+
position: relative;
524+
}
525+
.z-0 {
526+
z-index: 0;
527+
}
522528
.mb-4 {
523529
margin-bottom: 1rem;
524530
}
@@ -531,27 +537,69 @@ video {
531537
.mr-5 {
532538
margin-right: 1.25rem;
533539
}
540+
.mt-20 {
541+
margin-top: 5rem;
542+
}
543+
.mr-20 {
544+
margin-right: 5rem;
545+
}
546+
.mt-5 {
547+
margin-top: 1.25rem;
548+
}
534549
.mb-6 {
535550
margin-bottom: 1.5rem;
536551
}
537552
.mr-2 {
538553
margin-right: 0.5rem;
539554
}
555+
.ml-3 {
556+
margin-left: 0.75rem;
557+
}
558+
.-ml-px {
559+
margin-left: -1px;
560+
}
540561
.inline {
541562
display: inline;
542563
}
543564
.flex {
544565
display: flex;
545566
}
567+
.inline-flex {
568+
display: inline-flex;
569+
}
570+
.hidden {
571+
display: none;
572+
}
573+
.h-5 {
574+
height: 1.25rem;
575+
}
546576
.w-8\/12 {
547577
width: 66.666667%;
548578
}
549579
.w-full {
550580
width: 100%;
551581
}
582+
.w-5\/12 {
583+
width: 41.666667%;
584+
}
585+
.w-3\/12 {
586+
width: 25%;
587+
}
552588
.w-4\/12 {
553589
width: 33.333333%;
554590
}
591+
.w-5 {
592+
width: 1.25rem;
593+
}
594+
.flex-1 {
595+
flex: 1 1 0%;
596+
}
597+
.cursor-default {
598+
cursor: default;
599+
}
600+
.flex-col {
601+
flex-direction: column;
602+
}
555603
.items-center {
556604
align-items: center;
557605
}
@@ -561,15 +609,32 @@ video {
561609
.justify-between {
562610
justify-content: space-between;
563611
}
612+
.justify-items-center {
613+
justify-items: center;
614+
}
564615
.rounded-lg {
565616
border-radius: 0.5rem;
566617
}
567618
.rounded {
568619
border-radius: 0.25rem;
569620
}
621+
.rounded-md {
622+
border-radius: 0.375rem;
623+
}
624+
.rounded-l-md {
625+
border-top-left-radius: 0.375rem;
626+
border-bottom-left-radius: 0.375rem;
627+
}
628+
.rounded-r-md {
629+
border-top-right-radius: 0.375rem;
630+
border-bottom-right-radius: 0.375rem;
631+
}
570632
.border-2 {
571633
border-width: 2px;
572634
}
635+
.border {
636+
border-width: 1px;
637+
}
573638
.border-solid {
574639
border-style: solid;
575640
}
@@ -584,6 +649,10 @@ video {
584649
--tw-border-opacity: 1;
585650
border-color: rgb(239 68 68 / var(--tw-border-opacity));
586651
}
652+
.border-gray-300 {
653+
--tw-border-opacity: 1;
654+
border-color: rgb(209 213 219 / var(--tw-border-opacity));
655+
}
587656
.bg-white {
588657
--tw-bg-opacity: 1;
589658
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
@@ -616,6 +685,9 @@ video {
616685
.p-4 {
617686
padding: 1rem;
618687
}
688+
.p-1 {
689+
padding: 0.25rem;
690+
}
619691
.px-4 {
620692
padding-left: 1rem;
621693
padding-right: 1rem;
@@ -624,6 +696,14 @@ video {
624696
padding-top: 0.75rem;
625697
padding-bottom: 0.75rem;
626698
}
699+
.py-2 {
700+
padding-top: 0.5rem;
701+
padding-bottom: 0.5rem;
702+
}
703+
.px-2 {
704+
padding-left: 0.5rem;
705+
padding-right: 0.5rem;
706+
}
627707
.pr-3 {
628708
padding-right: 0.75rem;
629709
}
@@ -634,12 +714,27 @@ video {
634714
font-size: 0.875rem;
635715
line-height: 1.25rem;
636716
}
717+
.text-4xl {
718+
font-size: 2.25rem;
719+
line-height: 2.5rem;
720+
}
721+
.text-9xl {
722+
font-size: 8rem;
723+
line-height: 1;
724+
}
725+
.text-2xl {
726+
font-size: 1.5rem;
727+
line-height: 2rem;
728+
}
637729
.font-medium {
638730
font-weight: 500;
639731
}
640732
.font-bold {
641733
font-weight: 700;
642734
}
735+
.leading-5 {
736+
line-height: 1.25rem;
737+
}
643738
.text-white {
644739
--tw-text-opacity: 1;
645740
color: rgb(255 255 255 / var(--tw-text-opacity));
@@ -648,3 +743,92 @@ video {
648743
--tw-text-opacity: 1;
649744
color: rgb(239 68 68 / var(--tw-text-opacity));
650745
}
746+
.text-gray-500 {
747+
--tw-text-opacity: 1;
748+
color: rgb(107 114 128 / var(--tw-text-opacity));
749+
}
750+
.text-gray-700 {
751+
--tw-text-opacity: 1;
752+
color: rgb(55 65 81 / var(--tw-text-opacity));
753+
}
754+
.shadow-sm {
755+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
756+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
757+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
758+
}
759+
.ring-gray-300 {
760+
--tw-ring-opacity: 1;
761+
--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity));
762+
}
763+
.transition {
764+
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
765+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
766+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
767+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
768+
transition-duration: 150ms;
769+
}
770+
.duration-150 {
771+
transition-duration: 150ms;
772+
}
773+
.ease-in-out {
774+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
775+
}
776+
.hover\:text-gray-500:hover {
777+
--tw-text-opacity: 1;
778+
color: rgb(107 114 128 / var(--tw-text-opacity));
779+
}
780+
.hover\:text-gray-400:hover {
781+
--tw-text-opacity: 1;
782+
color: rgb(156 163 175 / var(--tw-text-opacity));
783+
}
784+
.focus\:z-10:focus {
785+
z-index: 10;
786+
}
787+
.focus\:border-blue-300:focus {
788+
--tw-border-opacity: 1;
789+
border-color: rgb(147 197 253 / var(--tw-border-opacity));
790+
}
791+
.focus\:outline-none:focus {
792+
outline: 2px solid transparent;
793+
outline-offset: 2px;
794+
}
795+
.focus\:ring:focus {
796+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
797+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
798+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
799+
}
800+
.active\:bg-gray-100:active {
801+
--tw-bg-opacity: 1;
802+
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
803+
}
804+
.active\:text-gray-700:active {
805+
--tw-text-opacity: 1;
806+
color: rgb(55 65 81 / var(--tw-text-opacity));
807+
}
808+
.active\:text-gray-500:active {
809+
--tw-text-opacity: 1;
810+
color: rgb(107 114 128 / var(--tw-text-opacity));
811+
}
812+
@media (min-width: 640px) {
813+
814+
.sm\:flex {
815+
display: flex;
816+
}
817+
818+
.sm\:hidden {
819+
display: none;
820+
}
821+
822+
.sm\:flex-1 {
823+
flex: 1 1 0%;
824+
}
825+
826+
.sm\:items-center {
827+
align-items: center;
828+
}
829+
830+
.sm\:justify-between {
831+
justify-content: space-between;
832+
}
833+
}
834+

0 commit comments

Comments
 (0)