mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-27 11:04:01 -05:00
15 lines
284 B
CSS
15 lines
284 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;
|
|
}
|
|
}
|
|
|
|
@tailwind components;
|
|
@tailwind utilities;
|