feat: add resizable embed component │ (#1401)

- Created reusable ResizableWrapper component
- Added drag-to-resize functionality for embeds
This commit is contained in:
Philip Okugbe
2025-07-25 00:23:14 +01:00
committed by GitHub
parent 32c7ecd9cf
commit ad5cf1e18b
4 changed files with 253 additions and 15 deletions
@@ -0,0 +1,16 @@
.embedWrapper {
@mixin light {
background-color: var(--mantine-color-gray-0);
}
@mixin dark {
background-color: var(--mantine-color-dark-7);
}
}
.embedIframe {
width: 100%;
height: 100%;
border: none;
border-radius: 8px;
}