mod-manager/data/resources/ui/components/card.blp
Tine Jozelj 2f09f3b093
Some checks failed
CI / Rustfmt (push) Failing after 4m51s
CI / Flatpak (push) Failing after 6m36s
feat: card design improvements
2024-01-11 21:36:44 +01:00

30 lines
423 B
Text

using Gtk 4.0;
using Adw 1;
template $Card: Box {
orientation: horizontal;
styles ["card"]
Image image {
icon-name: "image-loading";
}
Box contents {
orientation: vertical;
margin-start: 12;
margin-end: 12;
margin-top: 12;
margin-bottom: 12;
Label heading {
styles ["heading"]
}
Label body {
vexpand: true;
styles ["body"]
}
Box footer {}
}
}