livebook/assets/css/utilities.css
Jonatan Kłosko d55c4a1ccc
Introduce branching sections (#449)
* 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
2021-07-15 18:19:36 +02:00

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);
}
}