This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
rebuilding-symfony/assets/css/tailwind.pcss

41 lines
431 B
Plaintext
Raw Normal View History

2020-07-08 08:05:34 +00:00
@tailwind base;
2020-09-11 16:45:00 +00:00
a {
2024-08-02 21:35:40 +00:00
@apply text-lg
2020-09-11 16:45:00 +00:00
}
2020-07-08 08:05:34 +00:00
a:hover,
a:focus {
2020-09-11 16:45:00 +00:00
@apply underline
2020-07-08 08:05:34 +00:00
}
@tailwind components;
.nav-item {
2020-09-11 16:45:00 +00:00
@apply flex text-gray-900 text-xs;
2020-07-08 08:05:34 +00:00
2020-09-11 16:45:00 +00:00
@screen lg {
@apply text-sm
}
2020-07-08 13:14:03 +00:00
2020-09-11 16:45:00 +00:00
@screen dark {
@apply text-gray-200
}
2020-07-08 08:05:34 +00:00
}
@tailwind utilities;
2020-09-11 16:45:00 +00:00
@responsive {
.filter-contrast-1 {
filter: contrast(1%)
}
.filter-invert-100 {
filter: invert(100%)
}
2020-07-08 08:05:34 +00:00
}
.with-arrow:after {
2020-09-11 16:45:00 +00:00
content: "\A0\2192"
}