mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
32 lines
326 B
SCSS
32 lines
326 B
SCSS
|
|
App {
|
|
layout: dock;
|
|
docks: top=top bot=bottom;
|
|
background: $secondary;
|
|
}
|
|
|
|
Screen {
|
|
background: $secondary;
|
|
}
|
|
|
|
#fahrenheit {
|
|
width: 50%;
|
|
}
|
|
|
|
#celsius {
|
|
width: 50%;
|
|
}
|
|
|
|
#inputs {
|
|
dock: top;
|
|
layout: horizontal;
|
|
background: $primary;
|
|
height: 3;
|
|
}
|
|
|
|
#body {
|
|
dock: top;
|
|
background: $secondary;
|
|
height: 20;
|
|
}
|