/ src / components / embed / embed.module.css
embed.module.css
 1  .audioEmbed {
 2    height: 240px !important;
 3    width: 700px !important;
 4  }
 5  
 6  @media (max-width: 640px) {
 7    .audioEmbed {
 8      max-height: 250px !important;
 9      width: 100% !important;
10    }
11  }
12  
13  .instagramEmbed {
14    height: 420px !important;
15    width: 360px !important;
16  }
17  
18  @media (max-width: 640px) {
19    .instagramEmbed {
20      max-height: 420px !important;
21      width: 100% !important;
22    }
23  }
24  
25  .redditEmbed {
26    width: 500px !important;
27    height: 520px !important;
28  }
29  
30  @media (max-width: 640px) {
31    .redditEmbed {
32      width: 100% !important;
33      height: 520px !important;
34    }
35  }
36  
37  .tiktokEmbed {
38    width: 400px !important;
39    height: 780px !important;
40  }
41  
42  @media (max-width: 640px) {
43    .tiktokEmbed {
44      width: 100% !important;
45      height: 70vh !important;
46    }
47  }
48  
49  .videoEmbed {
50    height: 450px !important;
51    width: 800px !important;
52  }
53  
54  @media (max-width: 640px) {
55    .videoEmbed {
56      max-height: 250px !important;
57      width: 100% !important;
58    }
59  }
60  
61  .xEmbed {
62    height: 580px !important;
63  }
64  
65  @media (max-width: 640px) {
66    .xEmbed {
67      width: 100% !important;
68      height: 50vh !important;
69    }
70  }
71  
72  .soundcloudEmbed {
73    height: 166px; /* default height of soundcloud embeds */
74    width: 700px;
75  }
76  
77  @media (max-width: 640px) {
78    .soundcloudEmbed {
79      width: 100% !important;
80    }
81  }