mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-17 05:18:52 +08:00
30 lines
457 B
CSS
30 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";
|
||
|
}
|