Initial commit of BudgetPro

This commit is contained in:
Javi
2026-05-24 23:21:33 +02:00
commit f3096faee6
575 changed files with 90288 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#include "tipslabel.h"
TipsLabel::TipsLabel(QWidget *parent)
: QLabel(parent)
{
setObjectName("TipsLabel");
setStyleSheet("QLabel#TipsLabel{"
"background-color: rgba(255, 255, 255, 153);"
"border-radius: 3px;"
"border: 1px solid rgba(0, 0, 0, 13);}");
setAlignment(Qt::AlignCenter);
}
TipsLabel::~TipsLabel()
{
}