mirror of
https://github.com/skoelle/focusapp.git
synced 2026-09-17 20:10:25 +00:00
css refactor fix
This commit is contained in:
@@ -64,6 +64,14 @@ jobs:
|
||||
|
||||
echo "Package: $PACKAGE_NAME"
|
||||
|
||||
# Pruefen ob das Package ueberhaupt existiert
|
||||
if ! gh api \
|
||||
-H "Accept: application/vnd.github+json" \
|
||||
"/user/packages/container/$PACKAGE_NAME" > /dev/null 2>&1; then
|
||||
echo "Package existiert noch nicht, kein Cleanup noetig."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Alle Versions-IDs abrufen, sortiert nach Erstellungsdatum (neueste zuerst)
|
||||
VERSION_IDS=$(gh api \
|
||||
-H "Accept: application/vnd.github+json" \
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# Projekt-Richtlinien
|
||||
|
||||
## CSS / Frontend
|
||||
|
||||
- Nach jeder CSS-Anpassung (`*.css` Dateien) immer `cd client && npm run build` ausfuehren um zu pruefen ob der Build fehlerfrei durchlaeuft
|
||||
- Nach Aenderungen an Komponenten-Dateien (`*.tsx`) ebenfalls `npm run build` ausfuehren
|
||||
|
||||
## Docker
|
||||
|
||||
- Nach Aenderungen am `Dockerfile` oder `docker-compose.yml` immer `docker build .` ausfuehren
|
||||
@@ -23,8 +23,8 @@
|
||||
padding: 20px;
|
||||
}
|
||||
</style>
|
||||
<script type="module" crossorigin src="/assets/index-D-2MDxU_.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/assets/index-BMua5Qyc.css">
|
||||
<script type="module" crossorigin src="/assets/index-rPG5vfP0.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/assets/index-CXNz5rXF.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
||||
@@ -4,6 +4,11 @@
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.header {
|
||||
text-align: center;
|
||||
color: white;
|
||||
|
||||
Reference in New Issue
Block a user