mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-05-30 02:09:26 -07:00
17 lines
399 B
CSS
17 lines
399 B
CSS
@import 'tailwindcss';
|
|
|
|
@theme {
|
|
--color-rayhunter-blue: #4e4eb1;
|
|
--color-rayhunter-dark-blue: #3f3da0;
|
|
--color-rayhunter-green: #94ea18;
|
|
}
|
|
|
|
/* v4 dropped the v3 preflight rule that set `cursor: pointer` on buttons.
|
|
* Restore it so enabled buttons get the pointer cursor. */
|
|
@layer base {
|
|
button:not(:disabled),
|
|
[role='button']:not(:disabled) {
|
|
cursor: pointer;
|
|
}
|
|
}
|