Compare commits

..

4 Commits

Author SHA1 Message Date
55d86dbcaf fix ci
All checks were successful
CI / build (push) Successful in 12s
CI / lint (push) Successful in 9s
CI / build-and-push-docker (push) Successful in 18s
2025-08-30 23:24:51 +02:00
e366379a57 fix typo in docker-compose file 2025-08-30 23:24:51 +02:00
19aa35195f add nginx file to docker container 2025-08-30 23:24:51 +02:00
4926c3b388 Fix header and make content scroll on overflow 2025-08-30 23:17:10 +02:00
5 changed files with 37 additions and 33 deletions

View File

@@ -17,9 +17,9 @@ export default function Card({
}) {
return (
<div className={style.card}>
{header && (
<CardHeader icon={icon} content={name} isActive={active} />
)}
{header ? (
<CardHeader icon={icon} content={name} active={active} />
) : null}
<div className={style.cardContent}>{children}</div>
</div>
);

View File

@@ -5,7 +5,6 @@
justify-content: flex-start;
align-items: stretch;
gap: 30px;
margin: 30px;
}
.cardRow {

View File

@@ -1,17 +1,14 @@
import classNames from "classnames/bind";
import classNames from "classnames";
import style from "./style.module.css";
const styles = {
container: style.container,
active: style.active,
};
const cx = classNames.bind(styles);
export default function CardHeader({ icon, content, isActive = false }) {
export default function CardHeader({ icon, content, active = false }) {
return (
<div className={cx("container", { active: isActive })}>
<div
className={classNames(style.container, {
[`${style.active}`]: active,
})}
>
<div className={style.title}>
<div className={style.icon}>{icon}</div>
<div className={style.content}>{content}</div>

View File

@@ -42,29 +42,31 @@ export default function Dashboard() {
return (
<div className={`${style.dashboard} ${scheme}`}>
<CardColumn>
<Card icon="🚊" name="Timetable">
<Timetable />
</Card>
<CardRow>
<Card icon="🕐" name="Clock">
<Datetime />
<div className={style.body}>
<CardColumn>
<Card icon="🚊" name="Timetable">
<Timetable />
</Card>
<Card icon="🌤" name="Weather">
<Weather />
<CardRow>
<Card icon="🕐" name="Clock">
<Datetime />
</Card>
<Card icon="🌤" name="Weather">
<Weather />
</Card>
</CardRow>
<Card icon="🔔" name="Terminal" active={true}>
<Terminal />
</Card>
</CardRow>
<Card icon="🔔" name="Terminal" active={true}>
<Terminal />
</Card>
<Card icon="🧹" name="Flatastic">
<Flatastic />
</Card>
</CardColumn>
<Card icon="🧹" name="Flatastic">
<Flatastic />
</Card>
</CardColumn>
</div>
<Footer />
</div>

View File

@@ -5,6 +5,12 @@
transition: 0.5s;
}
.body {
height: 100%;
margin: 30px;
overflow: scroll;
}
/* 7 to 16 */
.day {
background-color: #007c7d;