mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-07 23:47:53 +08:00
26 lines
381 B
CSS
26 lines
381 B
CSS
@layer base {
|
|
body {
|
|
font-family:
|
|
"Inter",
|
|
system-ui,
|
|
-apple-system,
|
|
"Segoe UI",
|
|
Roboto,
|
|
Helvetica,
|
|
Arial,
|
|
sans-serif,
|
|
"Apple Color Emoji",
|
|
"Segoe UI Emoji";
|
|
}
|
|
|
|
/* Remove the default outline on focused elements */
|
|
:focus,
|
|
button:focus {
|
|
outline: none;
|
|
}
|
|
|
|
menu {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|