Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build-static-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Build app
run: npm run build

- name: Verify gravity slider is present in bundle
- name: Verify control sliders are present in bundle
shell: bash
run: |
shopt -s nullglob
Expand All @@ -40,6 +40,8 @@ jobs:
exit 1
fi
grep -n "Gravity" "${files[@]}"
grep -n "Flask Width" "${files[@]}"
grep -n "Flask Height" "${files[@]}"

- name: Prepare release artifact
run: |
Expand Down
7 changes: 5 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ export default function App() {
</div>

{/* 2. Слой интерфейса — только маленькая плашка внизу */}
<div className="absolute bottom-6 left-1/2 -translate-x-1/2 w-[90%] max-w-md z-10">
<div className="max-h-[calc(100vh-3rem)] overflow-y-auto bg-black/40 backdrop-blur-md p-5 rounded-3xl border border-white/10 shadow-2xl">
<div className="absolute inset-x-0 bottom-6 z-10 flex justify-center px-4 pointer-events-none">
<div
className="pointer-events-auto w-full max-w-md overflow-y-auto bg-black/40 backdrop-blur-md p-5 rounded-3xl border border-white/10 shadow-2xl"
style={{ maxHeight: 'calc(100dvh - 3rem)' }}
>

{/* Заголовок и описание в одну строку для экономии места */}
<div className="flex justify-between items-end mb-4">
Expand Down