Files

17 lines
385 B
C++
Raw Permalink Normal View History

2026-05-24 23:21:33 +02:00
#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()
{
}