feat: complete apple ui redesign on stable
This commit is contained in:
parent
584bb5ca4f
commit
187905d22b
4 changed files with 849 additions and 1292 deletions
8
.github/workflows/docker-build.yml
vendored
8
.github/workflows/docker-build.yml
vendored
|
|
@ -31,12 +31,16 @@ jobs:
|
||||||
echo "tag=main" >> $GITHUB_OUTPUT
|
echo "tag=main" >> $GITHUB_OUTPUT
|
||||||
echo "version=1.1.0" >> $GITHUB_OUTPUT
|
echo "version=1.1.0" >> $GITHUB_OUTPUT
|
||||||
echo "channel=stable" >> $GITHUB_OUTPUT
|
echo "channel=stable" >> $GITHUB_OUTPUT
|
||||||
|
elif [[ "${{ github.ref_name }}" == "feature/nightly" ]] || [[ "${{ github.ref_name }}" == "nightly" ]]; then
|
||||||
|
echo "tag=nightly" >> $GITHUB_OUTPUT
|
||||||
|
echo "version=1.1.0-nightly" >> $GITHUB_OUTPUT
|
||||||
|
echo "channel=nightly" >> $GITHUB_OUTPUT
|
||||||
else
|
else
|
||||||
# Ersetze Slashes durch Bindestriche für gültige Docker Tags
|
# Ersetze Slashes durch Bindestriche für gültige Docker Tags
|
||||||
CLEAN_TAG=$(echo "${{ github.ref_name }}" | sed 's/\//-/g')
|
CLEAN_TAG=$(echo "${{ github.ref_name }}" | sed 's/\//-/g')
|
||||||
echo "tag=$CLEAN_TAG" >> $GITHUB_OUTPUT
|
echo "tag=$CLEAN_TAG" >> $GITHUB_OUTPUT
|
||||||
echo "version=1.1.0-nightly" >> $GITHUB_OUTPUT
|
echo "version=1.1.0-dev" >> $GITHUB_OUTPUT
|
||||||
echo "channel=nightly" >> $GITHUB_OUTPUT
|
echo "channel=dev" >> $GITHUB_OUTPUT
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Nur auf main: auch :latest tag pushen
|
# Nur auf main: auch :latest tag pushen
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,19 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="de">
|
<html lang="de">
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<title>Soundboard</title>
|
|
||||||
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet" />
|
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||||
|
<title>Soundboard</title>
|
||||||
|
<!-- No tailwind script injection to avoid collision with our custom CSS structural layout -->
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap"
|
||||||
|
rel="stylesheet" />
|
||||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
|
||||||
<script type="module" src="/src/main.tsx"></script>
|
<script type="module" src="/src/main.tsx"></script>
|
||||||
</head>
|
</head>
|
||||||
<body class="p-4 sm:p-8">
|
|
||||||
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</html>
|
||||||
818
web/src/App.tsx
818
web/src/App.tsx
File diff suppressed because it is too large
Load diff
1235
web/src/styles.css
1235
web/src/styles.css
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue