From 3034bb76bd6da6f92d4d84487b621a3dd8194276 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Wed, 5 Feb 2025 17:17:47 +0100 Subject: [PATCH] handling styles --- resources/css/blocks/peertube-integration.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 resources/css/blocks/peertube-integration.css diff --git a/resources/css/blocks/peertube-integration.css b/resources/css/blocks/peertube-integration.css new file mode 100644 index 0000000..1583a87 --- /dev/null +++ b/resources/css/blocks/peertube-integration.css @@ -0,0 +1,13 @@ +.peertube-integration { + @apply w-full flex px-8 md:px-12 xl:px-24 py-12 bg-neutral-100; + + iframe { + @apply mx-auto; + + @apply lg:max-w-[80vw] xl:max-w-[60vw]; + + width: 100%; + height: auto; + aspect-ratio: 16/9; + } +}