UNPKG

mycsslab

Version:

MyCSSLab Quantum v3.0 - Revolutionary CSS framework with AI-powered intelligence, holographic UI, neural networks, and quantum effects

901 lines (850 loc) 45.1 kB
/** * FluxCSS Responsive Utilities * Comprehensive responsive system for all breakpoints */ /* Responsive Breakpoints */ @media (min-width: 640px) { /* Display */ .my-sm\:block { display: block !important; } .my-sm\:inline-block { display: inline-block !important; } .my-sm\:inline { display: inline !important; } .my-sm\:flex { display: flex !important; } .my-sm\:inline-flex { display: inline-flex !important; } .my-sm\:grid { display: grid !important; } .my-sm\:inline-grid { display: inline-grid !important; } .my-sm\:table { display: table !important; } .my-sm\:table-cell { display: table-cell !important; } .my-sm\:table-row { display: table-row !important; } .my-sm\:hidden { display: none !important; } /* Position */ .my-sm\:static { position: static !important; } .my-sm\:fixed { position: fixed !important; } .my-sm\:absolute { position: absolute !important; } .my-sm\:relative { position: relative !important; } .my-sm\:sticky { position: sticky !important; } /* Flexbox */ .my-sm\:flex-row { flex-direction: row !important; } .my-sm\:flex-row-reverse { flex-direction: row-reverse !important; } .my-sm\:flex-col { flex-direction: column !important; } .my-sm\:flex-col-reverse { flex-direction: column-reverse !important; } .my-sm\:flex-wrap { flex-wrap: wrap !important; } .my-sm\:flex-nowrap { flex-wrap: nowrap !important; } .my-sm\:justify-start { justify-content: flex-start !important; } .my-sm\:justify-end { justify-content: flex-end !important; } .my-sm\:justify-center { justify-content: center !important; } .my-sm\:justify-between { justify-content: space-between !important; } .my-sm\:justify-around { justify-content: space-around !important; } .my-sm\:justify-evenly { justify-content: space-evenly !important; } .my-sm\:items-start { align-items: flex-start !important; } .my-sm\:items-end { align-items: flex-end !important; } .my-sm\:items-center { align-items: center !important; } .my-sm\:items-baseline { align-items: baseline !important; } .my-sm\:items-stretch { align-items: stretch !important; } /* Grid */ .my-sm\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .my-sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .my-sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .my-sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .my-sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .my-sm\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .my-sm\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .my-sm\:col-span-1 { grid-column: span 1 / span 1 !important; } .my-sm\:col-span-2 { grid-column: span 2 / span 2 !important; } .my-sm\:col-span-3 { grid-column: span 3 / span 3 !important; } .my-sm\:col-span-4 { grid-column: span 4 / span 4 !important; } .my-sm\:col-span-5 { grid-column: span 5 / span 5 !important; } .my-sm\:col-span-6 { grid-column: span 6 / span 6 !important; } .my-sm\:col-span-full { grid-column: 1 / -1 !important; } /* Spacing */ .my-sm\:p-0 { padding: 0 !important; } .my-sm\:p-1 { padding: 0.25rem !important; } .my-sm\:p-2 { padding: 0.5rem !important; } .my-sm\:p-3 { padding: 0.75rem !important; } .my-sm\:p-4 { padding: 1rem !important; } .my-sm\:p-5 { padding: 1.25rem !important; } .my-sm\:p-6 { padding: 1.5rem !important; } .my-sm\:p-8 { padding: 2rem !important; } .my-sm\:p-10 { padding: 2.5rem !important; } .my-sm\:p-12 { padding: 3rem !important; } .my-sm\:p-16 { padding: 4rem !important; } .my-sm\:p-20 { padding: 5rem !important; } .my-sm\:p-24 { padding: 6rem !important; } .my-sm\:p-32 { padding: 8rem !important; } .my-sm\:p-40 { padding: 10rem !important; } .my-sm\:p-48 { padding: 12rem !important; } .my-sm\:p-56 { padding: 14rem !important; } .my-sm\:p-64 { padding: 16rem !important; } .my-sm\:p-72 { padding: 18rem !important; } .my-sm\:p-80 { padding: 20rem !important; } .my-sm\:p-96 { padding: 24rem !important; } .my-sm\:m-0 { margin: 0 !important; } .my-sm\:m-1 { margin: 0.25rem !important; } .my-sm\:m-2 { margin: 0.5rem !important; } .my-sm\:m-3 { margin: 0.75rem !important; } .my-sm\:m-4 { margin: 1rem !important; } .my-sm\:m-5 { margin: 1.25rem !important; } .my-sm\:m-6 { margin: 1.5rem !important; } .my-sm\:m-8 { margin: 2rem !important; } .my-sm\:m-10 { margin: 2.5rem !important; } .my-sm\:m-12 { margin: 3rem !important; } .my-sm\:m-16 { margin: 4rem !important; } .my-sm\:m-20 { margin: 5rem !important; } .my-sm\:m-24 { margin: 6rem !important; } .my-sm\:m-32 { margin: 8rem !important; } .my-sm\:m-40 { margin: 10rem !important; } .my-sm\:m-48 { margin: 12rem !important; } .my-sm\:m-56 { margin: 14rem !important; } .my-sm\:m-64 { margin: 16rem !important; } .my-sm\:m-72 { margin: 18rem !important; } .my-sm\:m-80 { margin: 20rem !important; } .my-sm\:m-96 { margin: 24rem !important; } /* Text */ .my-sm\:text-xs { font-size: 0.75rem !important; line-height: 1rem !important; } .my-sm\:text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; } .my-sm\:text-base { font-size: 1rem !important; line-height: 1.5rem !important; } .my-sm\:text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; } .my-sm\:text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; } .my-sm\:text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; } .my-sm\:text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; } .my-sm\:text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; } .my-sm\:text-5xl { font-size: 3rem !important; line-height: 1 !important; } .my-sm\:text-6xl { font-size: 3.75rem !important; line-height: 1 !important; } .my-sm\:text-7xl { font-size: 4.5rem !important; line-height: 1 !important; } .my-sm\:text-8xl { font-size: 6rem !important; line-height: 1 !important; } .my-sm\:text-9xl { font-size: 8rem !important; line-height: 1 !important; } .my-sm\:text-left { text-align: left !important; } .my-sm\:text-center { text-align: center !important; } .my-sm\:text-right { text-align: right !important; } .my-sm\:text-justify { text-align: justify !important; } /* Width & Height */ .my-sm\:w-auto { width: auto !important; } .my-sm\:w-full { width: 100% !important; } .my-sm\:w-screen { width: 100vw !important; } .my-sm\:w-min { width: min-content !important; } .my-sm\:w-max { width: max-content !important; } .my-sm\:w-fit { width: fit-content !important; } .my-sm\:w-0 { width: 0 !important; } .my-sm\:w-1 { width: 0.25rem !important; } .my-sm\:w-2 { width: 0.5rem !important; } .my-sm\:w-3 { width: 0.75rem !important; } .my-sm\:w-4 { width: 1rem !important; } .my-sm\:w-5 { width: 1.25rem !important; } .my-sm\:w-6 { width: 1.5rem !important; } .my-sm\:w-8 { width: 2rem !important; } .my-sm\:w-10 { width: 2.5rem !important; } .my-sm\:w-12 { width: 3rem !important; } .my-sm\:w-16 { width: 4rem !important; } .my-sm\:w-20 { width: 5rem !important; } .my-sm\:w-24 { width: 6rem !important; } .my-sm\:w-32 { width: 8rem !important; } .my-sm\:w-40 { width: 10rem !important; } .my-sm\:w-48 { width: 12rem !important; } .my-sm\:w-56 { width: 14rem !important; } .my-sm\:w-64 { width: 16rem !important; } .my-sm\:w-72 { width: 18rem !important; } .my-sm\:w-80 { width: 20rem !important; } .my-sm\:w-96 { width: 24rem !important; } .my-sm\:h-auto { height: auto !important; } .my-sm\:h-full { height: 100% !important; } .my-sm\:h-screen { height: 100vh !important; } .my-sm\:h-min { height: min-content !important; } .my-sm\:h-max { height: max-content !important; } .my-sm\:h-fit { height: fit-content !important; } .my-sm\:h-0 { height: 0 !important; } .my-sm\:h-1 { height: 0.25rem !important; } .my-sm\:h-2 { height: 0.5rem !important; } .my-sm\:h-3 { height: 0.75rem !important; } .my-sm\:h-4 { height: 1rem !important; } .my-sm\:h-5 { height: 1.25rem !important; } .my-sm\:h-6 { height: 1.5rem !important; } .my-sm\:h-8 { height: 2rem !important; } .my-sm\:h-10 { height: 2.5rem !important; } .my-sm\:h-12 { height: 3rem !important; } .my-sm\:h-16 { height: 4rem !important; } .my-sm\:h-20 { height: 5rem !important; } .my-sm\:h-24 { height: 6rem !important; } .my-sm\:h-32 { height: 8rem !important; } .my-sm\:h-40 { height: 10rem !important; } .my-sm\:h-48 { height: 12rem !important; } .my-sm\:h-56 { height: 14rem !important; } .my-sm\:h-64 { height: 16rem !important; } .my-sm\:h-72 { height: 18rem !important; } .my-sm\:h-80 { height: 20rem !important; } .my-sm\:h-96 { height: 24rem !important; } } @media (min-width: 768px) { /* Display */ .my-md\:block { display: block !important; } .my-md\:inline-block { display: inline-block !important; } .my-md\:inline { display: inline !important; } .my-md\:flex { display: flex !important; } .my-md\:inline-flex { display: inline-flex !important; } .my-md\:grid { display: grid !important; } .my-md\:inline-grid { display: inline-grid !important; } .my-md\:table { display: table !important; } .my-md\:table-cell { display: table-cell !important; } .my-md\:table-row { display: table-row !important; } .my-md\:hidden { display: none !important; } /* Position */ .my-md\:static { position: static !important; } .my-md\:fixed { position: fixed !important; } .my-md\:absolute { position: absolute !important; } .my-md\:relative { position: relative !important; } .my-md\:sticky { position: sticky !important; } /* Flexbox */ .my-md\:flex-row { flex-direction: row !important; } .my-md\:flex-row-reverse { flex-direction: row-reverse !important; } .my-md\:flex-col { flex-direction: column !important; } .my-md\:flex-col-reverse { flex-direction: column-reverse !important; } .my-md\:flex-wrap { flex-wrap: wrap !important; } .my-md\:flex-nowrap { flex-wrap: nowrap !important; } .my-md\:justify-start { justify-content: flex-start !important; } .my-md\:justify-end { justify-content: flex-end !important; } .my-md\:justify-center { justify-content: center !important; } .my-md\:justify-between { justify-content: space-between !important; } .my-md\:justify-around { justify-content: space-around !important; } .my-md\:justify-evenly { justify-content: space-evenly !important; } .my-md\:items-start { align-items: flex-start !important; } .my-md\:items-end { align-items: flex-end !important; } .my-md\:items-center { align-items: center !important; } .my-md\:items-baseline { align-items: baseline !important; } .my-md\:items-stretch { align-items: stretch !important; } /* Grid */ .my-md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .my-md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .my-md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .my-md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .my-md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .my-md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .my-md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .my-md\:col-span-1 { grid-column: span 1 / span 1 !important; } .my-md\:col-span-2 { grid-column: span 2 / span 2 !important; } .my-md\:col-span-3 { grid-column: span 3 / span 3 !important; } .my-md\:col-span-4 { grid-column: span 4 / span 4 !important; } .my-md\:col-span-5 { grid-column: span 5 / span 5 !important; } .my-md\:col-span-6 { grid-column: span 6 / span 6 !important; } .my-md\:col-span-full { grid-column: 1 / -1 !important; } /* Spacing */ .my-md\:p-0 { padding: 0 !important; } .my-md\:p-1 { padding: 0.25rem !important; } .my-md\:p-2 { padding: 0.5rem !important; } .my-md\:p-3 { padding: 0.75rem !important; } .my-md\:p-4 { padding: 1rem !important; } .my-md\:p-5 { padding: 1.25rem !important; } .my-md\:p-6 { padding: 1.5rem !important; } .my-md\:p-8 { padding: 2rem !important; } .my-md\:p-10 { padding: 2.5rem !important; } .my-md\:p-12 { padding: 3rem !important; } .my-md\:p-16 { padding: 4rem !important; } .my-md\:p-20 { padding: 5rem !important; } .my-md\:p-24 { padding: 6rem !important; } .my-md\:p-32 { padding: 8rem !important; } .my-md\:p-40 { padding: 10rem !important; } .my-md\:p-48 { padding: 12rem !important; } .my-md\:p-56 { padding: 14rem !important; } .my-md\:p-64 { padding: 16rem !important; } .my-md\:p-72 { padding: 18rem !important; } .my-md\:p-80 { padding: 20rem !important; } .my-md\:p-96 { padding: 24rem !important; } .my-md\:m-0 { margin: 0 !important; } .my-md\:m-1 { margin: 0.25rem !important; } .my-md\:m-2 { margin: 0.5rem !important; } .my-md\:m-3 { margin: 0.75rem !important; } .my-md\:m-4 { margin: 1rem !important; } .my-md\:m-5 { margin: 1.25rem !important; } .my-md\:m-6 { margin: 1.5rem !important; } .my-md\:m-8 { margin: 2rem !important; } .my-md\:m-10 { margin: 2.5rem !important; } .my-md\:m-12 { margin: 3rem !important; } .my-md\:m-16 { margin: 4rem !important; } .my-md\:m-20 { margin: 5rem !important; } .my-md\:m-24 { margin: 6rem !important; } .my-md\:m-32 { margin: 8rem !important; } .my-md\:m-40 { margin: 10rem !important; } .my-md\:m-48 { margin: 12rem !important; } .my-md\:m-56 { margin: 14rem !important; } .my-md\:m-64 { margin: 16rem !important; } .my-md\:m-72 { margin: 18rem !important; } .my-md\:m-80 { margin: 20rem !important; } .my-md\:m-96 { margin: 24rem !important; } /* Text */ .my-md\:text-xs { font-size: 0.75rem !important; line-height: 1rem !important; } .my-md\:text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; } .my-md\:text-base { font-size: 1rem !important; line-height: 1.5rem !important; } .my-md\:text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; } .my-md\:text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; } .my-md\:text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; } .my-md\:text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; } .my-md\:text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; } .my-md\:text-5xl { font-size: 3rem !important; line-height: 1 !important; } .my-md\:text-6xl { font-size: 3.75rem !important; line-height: 1 !important; } .my-md\:text-7xl { font-size: 4.5rem !important; line-height: 1 !important; } .my-md\:text-8xl { font-size: 6rem !important; line-height: 1 !important; } .my-md\:text-9xl { font-size: 8rem !important; line-height: 1 !important; } .my-md\:text-left { text-align: left !important; } .my-md\:text-center { text-align: center !important; } .my-md\:text-right { text-align: right !important; } .my-md\:text-justify { text-align: justify !important; } /* Width & Height */ .my-md\:w-auto { width: auto !important; } .my-md\:w-full { width: 100% !important; } .my-md\:w-screen { width: 100vw !important; } .my-md\:w-min { width: min-content !important; } .my-md\:w-max { width: max-content !important; } .my-md\:w-fit { width: fit-content !important; } .my-md\:w-0 { width: 0 !important; } .my-md\:w-1 { width: 0.25rem !important; } .my-md\:w-2 { width: 0.5rem !important; } .my-md\:w-3 { width: 0.75rem !important; } .my-md\:w-4 { width: 1rem !important; } .my-md\:w-5 { width: 1.25rem !important; } .my-md\:w-6 { width: 1.5rem !important; } .my-md\:w-8 { width: 2rem !important; } .my-md\:w-10 { width: 2.5rem !important; } .my-md\:w-12 { width: 3rem !important; } .my-md\:w-16 { width: 4rem !important; } .my-md\:w-20 { width: 5rem !important; } .my-md\:w-24 { width: 6rem !important; } .my-md\:w-32 { width: 8rem !important; } .my-md\:w-40 { width: 10rem !important; } .my-md\:w-48 { width: 12rem !important; } .my-md\:w-56 { width: 14rem !important; } .my-md\:w-64 { width: 16rem !important; } .my-md\:w-72 { width: 18rem !important; } .my-md\:w-80 { width: 20rem !important; } .my-md\:w-96 { width: 24rem !important; } .my-md\:h-auto { height: auto !important; } .my-md\:h-full { height: 100% !important; } .my-md\:h-screen { height: 100vh !important; } .my-md\:h-min { height: min-content !important; } .my-md\:h-max { height: max-content !important; } .my-md\:h-fit { height: fit-content !important; } .my-md\:h-0 { height: 0 !important; } .my-md\:h-1 { height: 0.25rem !important; } .my-md\:h-2 { height: 0.5rem !important; } .my-md\:h-3 { height: 0.75rem !important; } .my-md\:h-4 { height: 1rem !important; } .my-md\:h-5 { height: 1.25rem !important; } .my-md\:h-6 { height: 1.5rem !important; } .my-md\:h-8 { height: 2rem !important; } .my-md\:h-10 { height: 2.5rem !important; } .my-md\:h-12 { height: 3rem !important; } .my-md\:h-16 { height: 4rem !important; } .my-md\:h-20 { height: 5rem !important; } .my-md\:h-24 { height: 6rem !important; } .my-md\:h-32 { height: 8rem !important; } .my-md\:h-40 { height: 10rem !important; } .my-md\:h-48 { height: 12rem !important; } .my-md\:h-56 { height: 14rem !important; } .my-md\:h-64 { height: 16rem !important; } .my-md\:h-72 { height: 18rem !important; } .my-md\:h-80 { height: 20rem !important; } .my-md\:h-96 { height: 24rem !important; } } @media (min-width: 1024px) { /* Display */ .my-lg\:block { display: block !important; } .my-lg\:inline-block { display: inline-block !important; } .my-lg\:inline { display: inline !important; } .my-lg\:flex { display: flex !important; } .my-lg\:inline-flex { display: inline-flex !important; } .my-lg\:grid { display: grid !important; } .my-lg\:inline-grid { display: inline-grid !important; } .my-lg\:table { display: table !important; } .my-lg\:table-cell { display: table-cell !important; } .my-lg\:table-row { display: table-row !important; } .my-lg\:hidden { display: none !important; } /* Position */ .my-lg\:static { position: static !important; } .my-lg\:fixed { position: fixed !important; } .my-lg\:absolute { position: absolute !important; } .my-lg\:relative { position: relative !important; } .my-lg\:sticky { position: sticky !important; } /* Flexbox */ .my-lg\:flex-row { flex-direction: row !important; } .my-lg\:flex-row-reverse { flex-direction: row-reverse !important; } .my-lg\:flex-col { flex-direction: column !important; } .my-lg\:flex-col-reverse { flex-direction: column-reverse !important; } .my-lg\:flex-wrap { flex-wrap: wrap !important; } .my-lg\:flex-nowrap { flex-wrap: nowrap !important; } .my-lg\:justify-start { justify-content: flex-start !important; } .my-lg\:justify-end { justify-content: flex-end !important; } .my-lg\:justify-center { justify-content: center !important; } .my-lg\:justify-between { justify-content: space-between !important; } .my-lg\:justify-around { justify-content: space-around !important; } .my-lg\:justify-evenly { justify-content: space-evenly !important; } .my-lg\:items-start { align-items: flex-start !important; } .my-lg\:items-end { align-items: flex-end !important; } .my-lg\:items-center { align-items: center !important; } .my-lg\:items-baseline { align-items: baseline !important; } .my-lg\:items-stretch { align-items: stretch !important; } /* Grid */ .my-lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .my-lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .my-lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .my-lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .my-lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .my-lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .my-lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .my-lg\:col-span-1 { grid-column: span 1 / span 1 !important; } .my-lg\:col-span-2 { grid-column: span 2 / span 2 !important; } .my-lg\:col-span-3 { grid-column: span 3 / span 3 !important; } .my-lg\:col-span-4 { grid-column: span 4 / span 4 !important; } .my-lg\:col-span-5 { grid-column: span 5 / span 5 !important; } .my-lg\:col-span-6 { grid-column: span 6 / span 6 !important; } .my-lg\:col-span-full { grid-column: 1 / -1 !important; } /* Spacing */ .my-lg\:p-0 { padding: 0 !important; } .my-lg\:p-1 { padding: 0.25rem !important; } .my-lg\:p-2 { padding: 0.5rem !important; } .my-lg\:p-3 { padding: 0.75rem !important; } .my-lg\:p-4 { padding: 1rem !important; } .my-lg\:p-5 { padding: 1.25rem !important; } .my-lg\:p-6 { padding: 1.5rem !important; } .my-lg\:p-8 { padding: 2rem !important; } .my-lg\:p-10 { padding: 2.5rem !important; } .my-lg\:p-12 { padding: 3rem !important; } .my-lg\:p-16 { padding: 4rem !important; } .my-lg\:p-20 { padding: 5rem !important; } .my-lg\:p-24 { padding: 6rem !important; } .my-lg\:p-32 { padding: 8rem !important; } .my-lg\:p-40 { padding: 10rem !important; } .my-lg\:p-48 { padding: 12rem !important; } .my-lg\:p-56 { padding: 14rem !important; } .my-lg\:p-64 { padding: 16rem !important; } .my-lg\:p-72 { padding: 18rem !important; } .my-lg\:p-80 { padding: 20rem !important; } .my-lg\:p-96 { padding: 24rem !important; } .my-lg\:m-0 { margin: 0 !important; } .my-lg\:m-1 { margin: 0.25rem !important; } .my-lg\:m-2 { margin: 0.5rem !important; } .my-lg\:m-3 { margin: 0.75rem !important; } .my-lg\:m-4 { margin: 1rem !important; } .my-lg\:m-5 { margin: 1.25rem !important; } .my-lg\:m-6 { margin: 1.5rem !important; } .my-lg\:m-8 { margin: 2rem !important; } .my-lg\:m-10 { margin: 2.5rem !important; } .my-lg\:m-12 { margin: 3rem !important; } .my-lg\:m-16 { margin: 4rem !important; } .my-lg\:m-20 { margin: 5rem !important; } .my-lg\:m-24 { margin: 6rem !important; } .my-lg\:m-32 { margin: 8rem !important; } .my-lg\:m-40 { margin: 10rem !important; } .my-lg\:m-48 { margin: 12rem !important; } .my-lg\:m-56 { margin: 14rem !important; } .my-lg\:m-64 { margin: 16rem !important; } .my-lg\:m-72 { margin: 18rem !important; } .my-lg\:m-80 { margin: 20rem !important; } .my-lg\:m-96 { margin: 24rem !important; } /* Text */ .my-lg\:text-xs { font-size: 0.75rem !important; line-height: 1rem !important; } .my-lg\:text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; } .my-lg\:text-base { font-size: 1rem !important; line-height: 1.5rem !important; } .my-lg\:text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; } .my-lg\:text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; } .my-lg\:text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; } .my-lg\:text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; } .my-lg\:text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; } .my-lg\:text-5xl { font-size: 3rem !important; line-height: 1 !important; } .my-lg\:text-6xl { font-size: 3.75rem !important; line-height: 1 !important; } .my-lg\:text-7xl { font-size: 4.5rem !important; line-height: 1 !important; } .my-lg\:text-8xl { font-size: 6rem !important; line-height: 1 !important; } .my-lg\:text-9xl { font-size: 8rem !important; line-height: 1 !important; } .my-lg\:text-left { text-align: left !important; } .my-lg\:text-center { text-align: center !important; } .my-lg\:text-right { text-align: right !important; } .my-lg\:text-justify { text-align: justify !important; } /* Width & Height */ .my-lg\:w-auto { width: auto !important; } .my-lg\:w-full { width: 100% !important; } .my-lg\:w-screen { width: 100vw !important; } .my-lg\:w-min { width: min-content !important; } .my-lg\:w-max { width: max-content !important; } .my-lg\:w-fit { width: fit-content !important; } .my-lg\:w-0 { width: 0 !important; } .my-lg\:w-1 { width: 0.25rem !important; } .my-lg\:w-2 { width: 0.5rem !important; } .my-lg\:w-3 { width: 0.75rem !important; } .my-lg\:w-4 { width: 1rem !important; } .my-lg\:w-5 { width: 1.25rem !important; } .my-lg\:w-6 { width: 1.5rem !important; } .my-lg\:w-8 { width: 2rem !important; } .my-lg\:w-10 { width: 2.5rem !important; } .my-lg\:w-12 { width: 3rem !important; } .my-lg\:w-16 { width: 4rem !important; } .my-lg\:w-20 { width: 5rem !important; } .my-lg\:w-24 { width: 6rem !important; } .my-lg\:w-32 { width: 8rem !important; } .my-lg\:w-40 { width: 10rem !important; } .my-lg\:w-48 { width: 12rem !important; } .my-lg\:w-56 { width: 14rem !important; } .my-lg\:w-64 { width: 16rem !important; } .my-lg\:w-72 { width: 18rem !important; } .my-lg\:w-80 { width: 20rem !important; } .my-lg\:w-96 { width: 24rem !important; } .my-lg\:h-auto { height: auto !important; } .my-lg\:h-full { height: 100% !important; } .my-lg\:h-screen { height: 100vh !important; } .my-lg\:h-min { height: min-content !important; } .my-lg\:h-max { height: max-content !important; } .my-lg\:h-fit { height: fit-content !important; } .my-lg\:h-0 { height: 0 !important; } .my-lg\:h-1 { height: 0.25rem !important; } .my-lg\:h-2 { height: 0.5rem !important; } .my-lg\:h-3 { height: 0.75rem !important; } .my-lg\:h-4 { height: 1rem !important; } .my-lg\:h-5 { height: 1.25rem !important; } .my-lg\:h-6 { height: 1.5rem !important; } .my-lg\:h-8 { height: 2rem !important; } .my-lg\:h-10 { height: 2.5rem !important; } .my-lg\:h-12 { height: 3rem !important; } .my-lg\:h-16 { height: 4rem !important; } .my-lg\:h-20 { height: 5rem !important; } .my-lg\:h-24 { height: 6rem !important; } .my-lg\:h-32 { height: 8rem !important; } .my-lg\:h-40 { height: 10rem !important; } .my-lg\:h-48 { height: 12rem !important; } .my-lg\:h-56 { height: 14rem !important; } .my-lg\:h-64 { height: 16rem !important; } .my-lg\:h-72 { height: 18rem !important; } .my-lg\:h-80 { height: 20rem !important; } .my-lg\:h-96 { height: 24rem !important; } } @media (min-width: 1280px) { /* Display */ .my-xl\:block { display: block !important; } .my-xl\:inline-block { display: inline-block !important; } .my-xl\:inline { display: inline !important; } .my-xl\:flex { display: flex !important; } .my-xl\:inline-flex { display: inline-flex !important; } .my-xl\:grid { display: grid !important; } .my-xl\:inline-grid { display: inline-grid !important; } .my-xl\:table { display: table !important; } .my-xl\:table-cell { display: table-cell !important; } .my-xl\:table-row { display: table-row !important; } .my-xl\:hidden { display: none !important; } /* Position */ .my-xl\:static { position: static !important; } .my-xl\:fixed { position: fixed !important; } .my-xl\:absolute { position: absolute !important; } .my-xl\:relative { position: relative !important; } .my-xl\:sticky { position: sticky !important; } /* Flexbox */ .my-xl\:flex-row { flex-direction: row !important; } .my-xl\:flex-row-reverse { flex-direction: row-reverse !important; } .my-xl\:flex-col { flex-direction: column !important; } .my-xl\:flex-col-reverse { flex-direction: column-reverse !important; } .my-xl\:flex-wrap { flex-wrap: wrap !important; } .my-xl\:flex-nowrap { flex-wrap: nowrap !important; } .my-xl\:justify-start { justify-content: flex-start !important; } .my-xl\:justify-end { justify-content: flex-end !important; } .my-xl\:justify-center { justify-content: center !important; } .my-xl\:justify-between { justify-content: space-between !important; } .my-xl\:justify-around { justify-content: space-around !important; } .my-xl\:justify-evenly { justify-content: space-evenly !important; } .my-xl\:items-start { align-items: flex-start !important; } .my-xl\:items-end { align-items: flex-end !important; } .my-xl\:items-center { align-items: center !important; } .my-xl\:items-baseline { align-items: baseline !important; } .my-xl\:items-stretch { align-items: stretch !important; } /* Grid */ .my-xl\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .my-xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .my-xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .my-xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .my-xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .my-xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .my-xl\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .my-xl\:col-span-1 { grid-column: span 1 / span 1 !important; } .my-xl\:col-span-2 { grid-column: span 2 / span 2 !important; } .my-xl\:col-span-3 { grid-column: span 3 / span 3 !important; } .my-xl\:col-span-4 { grid-column: span 4 / span 4 !important; } .my-xl\:col-span-5 { grid-column: span 5 / span 5 !important; } .my-xl\:col-span-6 { grid-column: span 6 / span 6 !important; } .my-xl\:col-span-full { grid-column: 1 / -1 !important; } /* Spacing */ .my-xl\:p-0 { padding: 0 !important; } .my-xl\:p-1 { padding: 0.25rem !important; } .my-xl\:p-2 { padding: 0.5rem !important; } .my-xl\:p-3 { padding: 0.75rem !important; } .my-xl\:p-4 { padding: 1rem !important; } .my-xl\:p-5 { padding: 1.25rem !important; } .my-xl\:p-6 { padding: 1.5rem !important; } .my-xl\:p-8 { padding: 2rem !important; } .my-xl\:p-10 { padding: 2.5rem !important; } .my-xl\:p-12 { padding: 3rem !important; } .my-xl\:p-16 { padding: 4rem !important; } .my-xl\:p-20 { padding: 5rem !important; } .my-xl\:p-24 { padding: 6rem !important; } .my-xl\:p-32 { padding: 8rem !important; } .my-xl\:p-40 { padding: 10rem !important; } .my-xl\:p-48 { padding: 12rem !important; } .my-xl\:p-56 { padding: 14rem !important; } .my-xl\:p-64 { padding: 16rem !important; } .my-xl\:p-72 { padding: 18rem !important; } .my-xl\:p-80 { padding: 20rem !important; } .my-xl\:p-96 { padding: 24rem !important; } .my-xl\:m-0 { margin: 0 !important; } .my-xl\:m-1 { margin: 0.25rem !important; } .my-xl\:m-2 { margin: 0.5rem !important; } .my-xl\:m-3 { margin: 0.75rem !important; } .my-xl\:m-4 { margin: 1rem !important; } .my-xl\:m-5 { margin: 1.25rem !important; } .my-xl\:m-6 { margin: 1.5rem !important; } .my-xl\:m-8 { margin: 2rem !important; } .my-xl\:m-10 { margin: 2.5rem !important; } .my-xl\:m-12 { margin: 3rem !important; } .my-xl\:m-16 { margin: 4rem !important; } .my-xl\:m-20 { margin: 5rem !important; } .my-xl\:m-24 { margin: 6rem !important; } .my-xl\:m-32 { margin: 8rem !important; } .my-xl\:m-40 { margin: 10rem !important; } .my-xl\:m-48 { margin: 12rem !important; } .my-xl\:m-56 { margin: 14rem !important; } .my-xl\:m-64 { margin: 16rem !important; } .my-xl\:m-72 { margin: 18rem !important; } .my-xl\:m-80 { margin: 20rem !important; } .my-xl\:m-96 { margin: 24rem !important; } /* Text */ .my-xl\:text-xs { font-size: 0.75rem !important; line-height: 1rem !important; } .my-xl\:text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; } .my-xl\:text-base { font-size: 1rem !important; line-height: 1.5rem !important; } .my-xl\:text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; } .my-xl\:text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; } .my-xl\:text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; } .my-xl\:text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; } .my-xl\:text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; } .my-xl\:text-5xl { font-size: 3rem !important; line-height: 1 !important; } .my-xl\:text-6xl { font-size: 3.75rem !important; line-height: 1 !important; } .my-xl\:text-7xl { font-size: 4.5rem !important; line-height: 1 !important; } .my-xl\:text-8xl { font-size: 6rem !important; line-height: 1 !important; } .my-xl\:text-9xl { font-size: 8rem !important; line-height: 1 !important; } .my-xl\:text-left { text-align: left !important; } .my-xl\:text-center { text-align: center !important; } .my-xl\:text-right { text-align: right !important; } .my-xl\:text-justify { text-align: justify !important; } /* Width & Height */ .my-xl\:w-auto { width: auto !important; } .my-xl\:w-full { width: 100% !important; } .my-xl\:w-screen { width: 100vw !important; } .my-xl\:w-min { width: min-content !important; } .my-xl\:w-max { width: max-content !important; } .my-xl\:w-fit { width: fit-content !important; } .my-xl\:w-0 { width: 0 !important; } .my-xl\:w-1 { width: 0.25rem !important; } .my-xl\:w-2 { width: 0.5rem !important; } .my-xl\:w-3 { width: 0.75rem !important; } .my-xl\:w-4 { width: 1rem !important; } .my-xl\:w-5 { width: 1.25rem !important; } .my-xl\:w-6 { width: 1.5rem !important; } .my-xl\:w-8 { width: 2rem !important; } .my-xl\:w-10 { width: 2.5rem !important; } .my-xl\:w-12 { width: 3rem !important; } .my-xl\:w-16 { width: 4rem !important; } .my-xl\:w-20 { width: 5rem !important; } .my-xl\:w-24 { width: 6rem !important; } .my-xl\:w-32 { width: 8rem !important; } .my-xl\:w-40 { width: 10rem !important; } .my-xl\:w-48 { width: 12rem !important; } .my-xl\:w-56 { width: 14rem !important; } .my-xl\:w-64 { width: 16rem !important; } .my-xl\:w-72 { width: 18rem !important; } .my-xl\:w-80 { width: 20rem !important; } .my-xl\:w-96 { width: 24rem !important; } .my-xl\:h-auto { height: auto !important; } .my-xl\:h-full { height: 100% !important; } .my-xl\:h-screen { height: 100vh !important; } .my-xl\:h-min { height: min-content !important; } .my-xl\:h-max { height: max-content !important; } .my-xl\:h-fit { height: fit-content !important; } .my-xl\:h-0 { height: 0 !important; } .my-xl\:h-1 { height: 0.25rem !important; } .my-xl\:h-2 { height: 0.5rem !important; } .my-xl\:h-3 { height: 0.75rem !important; } .my-xl\:h-4 { height: 1rem !important; } .my-xl\:h-5 { height: 1.25rem !important; } .my-xl\:h-6 { height: 1.5rem !important; } .my-xl\:h-8 { height: 2rem !important; } .my-xl\:h-10 { height: 2.5rem !important; } .my-xl\:h-12 { height: 3rem !important; } .my-xl\:h-16 { height: 4rem !important; } .my-xl\:h-20 { height: 5rem !important; } .my-xl\:h-24 { height: 6rem !important; } .my-xl\:h-32 { height: 8rem !important; } .my-xl\:h-40 { height: 10rem !important; } .my-xl\:h-48 { height: 12rem !important; } .my-xl\:h-56 { height: 14rem !important; } .my-xl\:h-64 { height: 16rem !important; } .my-xl\:h-72 { height: 18rem !important; } .my-xl\:h-80 { height: 20rem !important; } .my-xl\:h-96 { height: 24rem !important; } } @media (min-width: 1536px) { /* Display */ .my-2xl\:block { display: block !important; } .my-2xl\:inline-block { display: inline-block !important; } .my-2xl\:inline { display: inline !important; } .my-2xl\:flex { display: flex !important; } .my-2xl\:inline-flex { display: inline-flex !important; } .my-2xl\:grid { display: grid !important; } .my-2xl\:inline-grid { display: inline-grid !important; } .my-2xl\:table { display: table !important; } .my-2xl\:table-cell { display: table-cell !important; } .my-2xl\:table-row { display: table-row !important; } .my-2xl\:hidden { display: none !important; } /* Position */ .my-2xl\:static { position: static !important; } .my-2xl\:fixed { position: fixed !important; } .my-2xl\:absolute { position: absolute !important; } .my-2xl\:relative { position: relative !important; } .my-2xl\:sticky { position: sticky !important; } /* Flexbox */ .my-2xl\:flex-row { flex-direction: row !important; } .my-2xl\:flex-row-reverse { flex-direction: row-reverse !important; } .my-2xl\:flex-col { flex-direction: column !important; } .my-2xl\:flex-col-reverse { flex-direction: column-reverse !important; } .my-2xl\:flex-wrap { flex-wrap: wrap !important; } .my-2xl\:flex-nowrap { flex-wrap: nowrap !important; } .my-2xl\:justify-start { justify-content: flex-start !important; } .my-2xl\:justify-end { justify-content: flex-end !important; } .my-2xl\:justify-center { justify-content: center !important; } .my-2xl\:justify-between { justify-content: space-between !important; } .my-2xl\:justify-around { justify-content: space-around !important; } .my-2xl\:justify-evenly { justify-content: space-evenly !important; } .my-2xl\:items-start { align-items: flex-start !important; } .my-2xl\:items-end { align-items: flex-end !important; } .my-2xl\:items-center { align-items: center !important; } .my-2xl\:items-baseline { align-items: baseline !important; } .my-2xl\:items-stretch { align-items: stretch !important; } /* Grid */ .my-2xl\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .my-2xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .my-2xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .my-2xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .my-2xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .my-2xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .my-2xl\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .my-2xl\:col-span-1 { grid-column: span 1 / span 1 !important; } .my-2xl\:col-span-2 { grid-column: span 2 / span 2 !important; } .my-2xl\:col-span-3 { grid-column: span 3 / span 3 !important; } .my-2xl\:col-span-4 { grid-column: span 4 / span 4 !important; } .my-2xl\:col-span-5 { grid-column: span 5 / span 5 !important; } .my-2xl\:col-span-6 { grid-column: span 6 / span 6 !important; } .my-2xl\:col-span-full { grid-column: 1 / -1 !important; } /* Spacing */ .my-2xl\:p-0 { padding: 0 !important; } .my-2xl\:p-1 { padding: 0.25rem !important; } .my-2xl\:p-2 { padding: 0.5rem !important; } .my-2xl\:p-3 { padding: 0.75rem !important; } .my-2xl\:p-4 { padding: 1rem !important; } .my-2xl\:p-5 { padding: 1.25rem !important; } .my-2xl\:p-6 { padding: 1.5rem !important; } .my-2xl\:p-8 { padding: 2rem !important; } .my-2xl\:p-10 { padding: 2.5rem !important; } .my-2xl\:p-12 { padding: 3rem !important; } .my-2xl\:p-16 { padding: 4rem !important; } .my-2xl\:p-20 { padding: 5rem !important; } .my-2xl\:p-24 { padding: 6rem !important; } .my-2xl\:p-32 { padding: 8rem !important; } .my-2xl\:p-40 { padding: 10rem !important; } .my-2xl\:p-48 { padding: 12rem !important; } .my-2xl\:p-56 { padding: 14rem !important; } .my-2xl\:p-64 { padding: 16rem !important; } .my-2xl\:p-72 { padding: 18rem !important; } .my-2xl\:p-80 { padding: 20rem !important; } .my-2xl\:p-96 { padding: 24rem !important; } .my-2xl\:m-0 { margin: 0 !important; } .my-2xl\:m-1 { margin: 0.25rem !important; } .my-2xl\:m-2 { margin: 0.5rem !important; } .my-2xl\:m-3 { margin: 0.75rem !important; } .my-2xl\:m-4 { margin: 1rem !important; } .my-2xl\:m-5 { margin: 1.25rem !important; } .my-2xl\:m-6 { margin: 1.5rem !important; } .my-2xl\:m-8 { margin: 2rem !important; } .my-2xl\:m-10 { margin: 2.5rem !important; } .my-2xl\:m-12 { margin: 3rem !important; } .my-2xl\:m-16 { margin: 4rem !important; } .my-2xl\:m-20 { margin: 5rem !important; } .my-2xl\:m-24 { margin: 6rem !important; } .my-2xl\:m-32 { margin: 8rem !important; } .my-2xl\:m-40 { margin: 10rem !important; } .my-2xl\:m-48 { margin: 12rem !important; } .my-2xl\:m-56 { margin: 14rem !important; } .my-2xl\:m-64 { margin: 16rem !important; } .my-2xl\:m-72 { margin: 18rem !important; } .my-2xl\:m-80 { margin: 20rem !important; } .my-2xl\:m-96 { margin: 24rem !important; } /* Text */ .my-2xl\:text-xs { font-size: 0.75rem !important; line-height: 1rem !important; } .my-2xl\:text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; } .my-2xl\:text-base { font-size: 1rem !important; line-height: 1.5rem !important; } .my-2xl\:text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; } .my-2xl\:text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; } .my-2xl\:text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; } .my-2xl\:text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; } .my-2xl\:text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; } .my-2xl\:text-5xl { font-size: 3rem !important; line-height: 1 !important; } .my-2xl\:text-6xl { font-size: 3.75rem !important; line-height: 1 !important; } .my-2xl\:text-7xl { font-size: 4.5rem !important; line-height: 1 !important; } .my-2xl\:text-8xl { font-size: 6rem !important; line-height: 1 !important; } .my-2xl\:text-9xl { font-size: 8rem !important; line-height: 1 !important; } .my-2xl\:text-left { text-align: left !important; } .my-2xl\:text-center { text-align: center !important; } .my-2xl\:text-right { text-align: right !important; } .my-2xl\:text-justify { text-align: justify !important; } /* Width & Height */ .my-2xl\:w-auto { width: auto !important; } .my-2xl\:w-full { width: 100% !important; } .my-2xl\:w-screen { width: 100vw !important; } .my-2xl\:w-min { width: min-content !important; } .my-2xl\:w-max { width: max-content !important; } .my-2xl\:w-fit { width: fit-content !important; } .my-2xl\:w-0 { width: 0 !important; } .my-2xl\:w-1 { width: 0.25rem !important; } .my-2xl\:w-2 { width: 0.5rem !important; } .my-2xl\:w-3 { width: 0.75rem !important; } .my-2xl\:w-4 { width: 1rem !important; } .my-2xl\:w-5 { width: 1.25rem !important; } .my-2xl\:w-6 { width: 1.5rem !important; } .my-2xl\:w-8 { width: 2rem !important; } .my-2xl\:w-10 { width: 2.5rem !important; } .my-2xl\:w-12 { width: 3rem !important; } .my-2xl\:w-16 { width: 4rem !important; } .my-2xl\:w-20 { width: 5rem !important; } .my-2xl\:w-24 { width: 6rem !important; } .my-2xl\:w-32 { width: 8rem !important; } .my-2xl\:w-40 { width: 10rem !important; } .my-2xl\:w-48 { width: 12rem !important; } .my-2xl\:w-56 { width: 14rem !important; } .my-2xl\:w-64 { width: 16rem !important; } .my-2xl\:w-72 { width: 18rem !important; } .my-2xl\:w-80 { width: 20rem !important; } .my-2xl\:w-96 { width: 24rem !important; } .my-2xl\:h-auto { height: auto !important; } .my-2xl\:h-full { height: 100% !important; } .my-2xl\:h-screen { height: 100vh !important; } .my-2xl\:h-min { height: min-content !important; } .my-2xl\:h-max { height: max-content !important; } .my-2xl\:h-fit { height: fit-content !important; } .my-2xl\:h-0 { height: 0 !important; } .my-2xl\:h-1 { height: 0.25rem !important; } .my-2xl\:h-2 { height: 0.5rem !important; } .my-2xl\:h-3 { height: 0.75rem !important; } .my-2xl\:h-4 { height: 1rem !important; } .my-2xl\:h-5 { height: 1.25rem !important; } .my-2xl\:h-6 { height: 1.5rem !important; } .my-2xl\:h-8 { height: 2rem !important; } .my-2xl\:h-10 { height: 2.5rem !important; } .my-2xl\:h-12 { height: 3rem !important; } .my-2xl\:h-16 { height: 4rem !important; } .my-2xl\:h-20 { height: 5rem !important; } .my-2xl\:h-24 { height: 6rem !important; } .my-2xl\:h-32 { height: 8rem !important; } .my-2xl\:h-40 { height: 10rem !important; } .my-2xl\:h-48 { height: 12rem !important; } .my-2xl\:h-56 { height: 14rem !important; } .my-2xl\:h-64 { height: 16rem !important; } .my-2xl\:h-72 { height: 18rem !important; } .my-2xl\:h-80 { height: 20rem !important; } .my-2xl\:h-96 { height: 24rem !important; } }