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