mirror of
https://github.com/Xevion/rust-sdl2-emscripten.git
synced 2025-12-06 03:16:23 -06:00
22 lines
438 B
SCSS
22 lines
438 B
SCSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@font-face {
|
|
font-family: "Liberation Mono";
|
|
src:
|
|
url("LiberationMono.woff2") format("woff2"),
|
|
url("LiberationMono.woff") format("woff");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
canvas {
|
|
@apply w-full h-full block mx-auto bg-black;
|
|
}
|
|
|
|
.code {
|
|
@apply px-1 rounded font-mono bg-zinc-900 border border-zinc-700
|
|
}
|