mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
23 lines
283 B
CSS
23 lines
283 B
CSS
Screen {
|
|
background: lightcoral;
|
|
}
|
|
|
|
#sidebar {
|
|
color: $text-panel;
|
|
background: $panel;
|
|
dock: left;
|
|
width: 30;
|
|
offset-x: -100%;
|
|
transition: offset 500ms in_out_cubic 2s;
|
|
layer: sidebar;
|
|
}
|
|
|
|
#sidebar.-active {
|
|
offset-x: 0;
|
|
}
|
|
|
|
.box {
|
|
height: 12;
|
|
width: 30;
|
|
}
|