logo
pub trait StyleSheet {
    fn menu(&self) -> Style;
    fn active(&self) -> Style;
    fn hovered(&self) -> Style;
}
Expand description

A set of rules that dictate the style of a container.

Required Methods

Produces the style of a container.

Implementors