mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-22 21:08:12 +08:00
Co-authored-by: Sboonny <[email protected]> Co-authored-by: Ahmad Abdolsaheb <[email protected]>
20 lines
486 B
CSS
20 lines
486 B
CSS
@import './colors.css';
|
|
|
|
@tailwind base;
|
|
|
|
@layer base {
|
|
/* Override Tailwind's default `text-decoration` rule. */
|
|
/* https://github.com/tailwindlabs/tailwindcss/blob/master/src/css/preflight.css#L85 */
|
|
a {
|
|
@apply underline;
|
|
}
|
|
/* Override Tailwind's default `-webkit-tap-highlight-color` rule. */
|
|
/* https://github.com/tailwindlabs/tailwindcss/discussions/2984 */
|
|
button {
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
}
|
|
|
|
@tailwind components;
|
|
@tailwind utilities;
|