mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-10 17:15:09 +08:00
17 lines
327 B
CSS
17 lines
327 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;
|
|
}
|
|
}
|