Files
asusctl/rog-control-center/ui/pages/fans.slint
Luke D. Jones a88c33c201 MOrE
2024-03-02 23:49:11 +13:00

19 lines
492 B
Plaintext

import { Theme } from "../globals.slint";
export component PageFans inherits VerticalLayout {
Rectangle {
clip: true;
// TODO: slow with border-radius
padding: 8px;
// height: parent.height - infobar.height - mainview.padding - self.padding * 2;
// TODO: border-radius: 8px;
mainview := VerticalLayout {
padding: 10px;
spacing: 10px;
Text {
text: "TODO";
}
}
}
}