14 lines
216 B
C++
14 lines
216 B
C++
#include "HomePage.h"
|
|
|
|
HomePage::HomePage(QWidget* parent) : Page(parent) {
|
|
|
|
setStyleSheet(R"(
|
|
background-color: #28FF28;
|
|
border-radius: 12px;
|
|
)");
|
|
|
|
applyShadow(this);
|
|
}
|
|
|
|
HomePage::~HomePage( ) { }
|