Compare commits

..

8 Commits

Author SHA1 Message Date
83512887aa fix code style issues
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-31 15:56:36 +02:00
4ef2bdb772 add small 420 widget
Some checks failed
CI / build (push) Successful in 13s
CI / lint (push) Failing after 9s
CI / build-and-push-docker (push) Successful in 18s
2025-08-31 15:55:32 +02:00
6559a06acc fix code style
All checks were successful
CI / build (push) Successful in 14s
CI / lint (push) Successful in 8s
CI / build-and-push-docker (push) Successful in 17s
2025-08-30 23:49:17 +02:00
449096b8c4 add token for biome
Some checks failed
CI / build (push) Successful in 13s
CI / lint (push) Failing after 9s
CI / build-and-push-docker (push) Successful in 17s
2025-08-30 23:47:11 +02:00
9abd91b2ed use biome giithub action
Some checks failed
CI / build (push) Successful in 12s
CI / lint (push) Failing after 6s
CI / build-and-push-docker (push) Successful in 16s
2025-08-30 23:39:03 +02:00
8c7fb8d9a5 use bunx to run biome
All checks were successful
CI / build (push) Successful in 13s
CI / lint (push) Successful in 9s
CI / build-and-push-docker (push) Successful in 17s
2025-08-30 23:37:04 +02:00
29548029a1 run bun install before lint
Some checks failed
CI / build (push) Successful in 15s
CI / lint (push) Successful in 13s
CI / build-and-push-docker (push) Has been cancelled
2025-08-30 23:36:03 +02:00
b0471a3a2f run multiple lint commands in one sub step
All checks were successful
CI / build (push) Successful in 12s
CI / lint (push) Successful in 7s
CI / build-and-push-docker (push) Successful in 17s
2025-08-30 23:34:53 +02:00
3 changed files with 1 additions and 33 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

View File

@@ -11,8 +11,6 @@ import Footer from "@/components/Footer/Footer";
import Terminal from "@/components/Terminal/Terminal";
import Timetable from "@/components/Timetable/Timetable";
import Weather from "@/components/Weather/Weather";
import amogus from "/img/amogus.png";
import FourTwenty from "../FourTwenty/FourTwenty";
import style from "./style.module.css";
@@ -44,9 +42,6 @@ export default function Dashboard() {
return (
<div className={`${style.dashboard} ${scheme}`}>
<div className={style.amogus}>
<img src={amogus} alt="Amogus" />
</div>
<div className={style.body}>
<CardColumn>
<Card icon="🚊" name="Timetable">

View File

@@ -7,7 +7,7 @@
.body {
height: 100%;
padding: 30px;
margin: 30px;
overflow: scroll;
}
@@ -25,30 +25,3 @@
.night {
background-color: #2a3f55;
}
.amogus {
z-index: 100;
position: absolute;
scale: 60%;
animation:
x 10s linear infinite alternate,
y 7s linear infinite alternate;
}
@keyframes x {
from {
left: 0;
}
to {
left: calc(100vw - 70px);
}
}
@keyframes y {
from {
top: 0;
}
to {
top: calc(100vh - 90px);
}
}