mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-10 17:15:09 +08:00
8cf8f2697c
* Use <kbd> for keyboard keys * Show keyboard icon * Render each key explicitly * Update lib/livebook_web/live/session_live/shortcuts_component.ex Co-authored-by: Wojtek Mach <wojtekmach@users.noreply.github.com> * Add Livebook specific icons to the introductory notebooks * More updates Co-authored-by: Jonatan Kłosko <jonatanklosko@gmail.com>
29 lines
457 B
CSS
29 lines
457 B
CSS
/*
|
|
Specific icons used in the built-in notebooks
|
|
|
|
Note: we use the ri- prefix to use the existing
|
|
Remix icon CSS
|
|
*/
|
|
|
|
.ri-livebook-sections,
|
|
.ri-livebook-runtime,
|
|
.ri-livebook-shortcuts,
|
|
.ri-livebook-save {
|
|
@apply text-xl align-middle;
|
|
}
|
|
|
|
.ri-livebook-sections:before {
|
|
content: "\eade";
|
|
}
|
|
|
|
.ri-livebook-runtime:before {
|
|
content: "\ebf0";
|
|
}
|
|
|
|
.ri-livebook-shortcuts:before {
|
|
content: "\ee72";
|
|
}
|
|
|
|
.ri-livebook-save:before {
|
|
content: "\f0b3";
|
|
}
|