mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-17 13:27:50 +08:00
d55c4a1ccc
* Introduce branching sections * parent_index -> branch_parent_index * Flip the branch icon * Don't mark branching sections as aborted if the main flow crashes * Outline more details about branching sections in the Elixir and Livebook notebook * Add branch indicator to the sections sidebar
25 lines
431 B
CSS
25 lines
431 B
CSS
@layer utilities {
|
|
/* A set of reusable classes */
|
|
|
|
.bg-editor {
|
|
background-color: #282c34;
|
|
}
|
|
|
|
.text-editor {
|
|
color: #abb2bf;
|
|
}
|
|
|
|
.font-editor {
|
|
font-family: "JetBrains Mono", "Droid Sans Mono", "monospace";
|
|
font-size: 14px;
|
|
}
|
|
|
|
.shadow-xl-center {
|
|
box-shadow: 0 0 25px -5px rgba(0, 0, 0, 0.1),
|
|
0 0 10px -5px rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
.flip-horizontally {
|
|
transform: scaleY(-1);
|
|
}
|
|
}
|