Files
textual/examples/calculator.tcss
Will McGugan 9f32476af2 Theme tweaks (#5232)
* theme tweaks

* style tweaks

* snapshots

* demo tweaks

* projects tweaks
2024-11-13 17:38:46 +00:00

39 lines
537 B
Plaintext

Screen {
overflow: auto;
}
#calculator {
layout: grid;
grid-size: 4;
grid-gutter: 1 2;
grid-columns: 1fr;
grid-rows: 2fr 1fr 1fr 1fr 1fr 1fr;
margin: 1 2;
min-height: 25;
min-width: 26;
height: 100%;
&:inline {
margin: 0 2;
}
}
Button {
width: 100%;
height: 100%;
}
#numbers {
column-span: 4;
padding: 0 1;
height: 100%;
background: $panel;
color: $text;
content-align: center middle;
text-align: right;
}
#number-0 {
column-span: 2;
}