16 lines
322 B
Python
16 lines
322 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from fractions import Fraction
|
||
|
|
from typing import NamedTuple
|
||
|
|
|
||
|
|
from textual.geometry import Spacing
|
||
|
|
|
||
|
|
|
||
|
|
class BoxModel(NamedTuple):
|
||
|
|
"""The result of `get_box_model`."""
|
||
|
|
|
||
|
|
# Content + padding + border
|
||
|
|
width: Fraction
|
||
|
|
height: Fraction
|
||
|
|
margin: Spacing # Additional margin
|