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"
|
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)
|
# Alle Versions-IDs abrufen, sortiert nach Erstellungsdatum (neueste zuerst)
|
||||||
VERSION_IDS=$(gh api \
|
VERSION_IDS=$(gh api \
|
||||||
-H "Accept: application/vnd.github+json" \
|
-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;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script type="module" crossorigin src="/assets/index-D-2MDxU_.js"></script>
|
<script type="module" crossorigin src="/assets/index-rPG5vfP0.js"></script>
|
||||||
<link rel="stylesheet" crossorigin href="/assets/index-BMua5Qyc.css">
|
<link rel="stylesheet" crossorigin href="/assets/index-CXNz5rXF.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
|
|||||||
@@ -4,6 +4,11 @@
|
|||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: white;
|
color: white;
|
||||||
|
|||||||
Reference in New Issue
Block a user