12 lines
346 B
Plaintext
12 lines
346 B
Plaintext
// Container component - Card-style container with border and rounded corners
|
|
import { Theme, SpacingSystem } from "../theme/theme.slint";
|
|
|
|
export component Container inherits Rectangle {
|
|
@children
|
|
|
|
background: Theme.colors.card;
|
|
border-radius: SpacingSystem.radius.md;
|
|
border-width: 1px;
|
|
border-color: Theme.colors.border;
|
|
}
|