Package cards go back to a permanently dark stage (all price tiers, not just the priciest), with each theme sweeping through its own colour family across the tiers instead of just lightening/darkening. Adds an admin toggle between the previous wrapping grid and a new horizontal scroll strip of narrow, tall cards. Card content is restructured to match the client's reference mockup: no icon chip, centered uppercase name with a short divider, an empty middle area that lets the glowing road motif show through, then the feature list and price stacked at the bottom. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
7 lines
413 B
SQL
7 lines
413 B
SQL
-- Auswaehlbares Layout fuer die Paket-Kacheln (responsives Raster / horizontales
|
|
-- Scroll-Band aus schmalen Kacheln). Additiv, nichts wird geloescht.
|
|
-- Hinweis: Auf der Live-Seite reicht stattdessen ein Klick auf "Datenbankstruktur aktualisieren"
|
|
-- unter Admin-Panel -> Einstellungen -> Datenbank.
|
|
|
|
ALTER TABLE app_settings
|
|
ADD COLUMN IF NOT EXISTS package_card_layout VARCHAR(20) NOT NULL DEFAULT 'strip';
|