mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-31 06:01:50 -05:00
Co-authored-by: Sboonny <muhammedelruby@gmail.com> Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
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;
|