lovasoa / SQLpage

SQL-only webapp builder, empowering data analysts to build websites and applications quickly
https://sql.ophir.dev
MIT License
882 stars 62 forks source link

white background on dark mode with embed #351

Closed amrutadotorg closed 1 month ago

amrutadotorg commented 1 month ago

Hi, is it possible to remove/fix the white background when using embed in dark mode? thank you

Screenshot 2024-05-30 at 07 28 59

SELECT 'card' AS component, 1 AS columns;
SELECT
    'https://player.vimeo.com/video/951425265?h=debe29aecf' AS embed,
    'autoplay; fullscreen; picture-in-picture; clipboard-write' AS allow,
    'iframe' AS embed_mode,
    '700' AS height;
lovasoa commented 1 month ago

Hello ! The white background you can see is displayed by vimeo, not by SQLPage.

Vimeo offers the option to make this background black if you want: https://help.vimeo.com/hc/en-us/articles/12426260232977-Player-parameters-overview

select 'shell' as component, 'dark' as theme;
SELECT 'card' AS component, 1 AS columns;
SELECT
    'https://player.vimeo.com/video/951425265?transparent=0' AS embed,
    'autoplay; fullscreen; picture-in-picture; clipboard-write' AS allow,
    'iframe' AS embed_mode,
    '700' AS height;