uh lets ignore that I did the last commits from the wrong folder

This commit is contained in:
Crylia
2024-03-20 17:30:53 +01:00
parent 40f4eae622
commit 91009f1aba
77 changed files with 68457 additions and 154607 deletions

View File

@@ -0,0 +1,16 @@
#include "pages.h"
#include <QWidget>
#include <QFrame>
Pages::Pages(QWidget* parent) :QFrame(parent) {
this->setStyleSheet(R"(
background-color: #282828;
border-radius: 12px;
)");
this->setFixedSize(300, 180);
}
Pages::~Pages( ) { }