23 lines
306 B
CSS
23 lines
306 B
CSS
@import "tailwindcss";
|
|
|
|
@import "./fonts/BalsamiqSans";
|
|
|
|
@theme {
|
|
}
|
|
|
|
html,
|
|
body {
|
|
@apply w-dvw h-dvh bg-top-left bg-green-300;
|
|
font-family: "BalsamiqSans", sans-serif;
|
|
}
|
|
|
|
#root {
|
|
@apply w-full h-full max-w-150 m-auto overflow-hidden relative;
|
|
}
|
|
|
|
button {
|
|
&:focus-visible {
|
|
outline: none;
|
|
}
|
|
}
|