this repo has no description
1.embed-modal-container {
2 width: 100%;
3 height: 100%;
4 display: flex;
5 flex-direction: column;
6 pointer-events: none;
7
8 .top-controls {
9 padding: 16px;
10 display: flex;
11 gap: 8px;
12 justify-content: space-between;
13 pointer-events: auto;
14 }
15
16 .embed-content {
17 flex-grow: 1;
18 display: flex;
19 align-items: center;
20 justify-content: center;
21
22 iframe {
23 pointer-events: auto;
24 max-width: 100%;
25 max-height: 100%;
26 width: max(var(--width), var(--main-width));
27 height: auto;
28 aspect-ratio: var(--aspect-ratio);
29 }
30 }
31}