mod-manager/data/resources/ui/components/card.blp

31 lines
423 B
Text
Raw Normal View History

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