17 lines
384 B
CSS
17 lines
384 B
CSS
@import "tailwindcss";
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
|
|
|
|
@layer base {
|
|
html,
|
|
body {
|
|
font-family: 'Roboto', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
}
|
|
* {
|
|
font-family: inherit;
|
|
}
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
}
|