mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* Move border reset to borderColor plugin, support opacity * Update JIT tests * Don't use opacity variable for default border color when borderOpacity is disabled * Fix tests
92 lines
1.6 KiB
CSS
92 lines
1.6 KiB
CSS
*,
|
|
::before,
|
|
::after {
|
|
--tw-border-opacity: 1;
|
|
border-color: rgba(229, 231, 235, var(--tw-border-opacity));
|
|
}
|
|
* {
|
|
--tw-shadow: 0 0 #0000;
|
|
--tw-ring-inset: var(--tw-empty, /*!*/ /*!*/);
|
|
--tw-ring-offset-width: 0px;
|
|
--tw-ring-offset-color: #fff;
|
|
--tw-ring-color: rgba(59, 130, 246, 0.5);
|
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
--tw-ring-shadow: 0 0 #0000;
|
|
}
|
|
.container {
|
|
width: 100%;
|
|
}
|
|
@media (min-width: 640px) {
|
|
.container {
|
|
max-width: 640px;
|
|
}
|
|
}
|
|
@media (min-width: 768px) {
|
|
.container {
|
|
max-width: 768px;
|
|
}
|
|
}
|
|
@media (min-width: 1024px) {
|
|
.container {
|
|
max-width: 1024px;
|
|
}
|
|
}
|
|
@media (min-width: 1280px) {
|
|
.container {
|
|
max-width: 1280px;
|
|
}
|
|
}
|
|
@media (min-width: 1536px) {
|
|
.container {
|
|
max-width: 1536px;
|
|
}
|
|
}
|
|
.btn {
|
|
button: yes !important;
|
|
}
|
|
@font-face {
|
|
font-family: Inter;
|
|
}
|
|
@page {
|
|
margin: 1cm;
|
|
}
|
|
.custom-component {
|
|
font-weight: 700;
|
|
}
|
|
.custom-important-component {
|
|
text-align: center !important;
|
|
}
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
.animate-spin {
|
|
animation: spin 1s linear infinite !important;
|
|
}
|
|
.font-bold {
|
|
font-weight: 700 !important;
|
|
}
|
|
.custom-util {
|
|
button: no;
|
|
}
|
|
.group:hover .group-hover\:focus-within\:text-left:focus-within {
|
|
text-align: left !important;
|
|
}
|
|
[dir='rtl'] .rtl\:active\:text-center:active {
|
|
text-align: center !important;
|
|
}
|
|
@media (prefers-reduced-motion: no-preference) {
|
|
.motion-safe\:hover\:text-center:hover {
|
|
text-align: center !important;
|
|
}
|
|
}
|
|
.dark .dark\:focus\:text-left:focus {
|
|
text-align: left !important;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.md\:hover\:text-right:hover {
|
|
text-align: right !important;
|
|
}
|
|
}
|