This commit is contained in:
2026-05-17 20:54:09 -04:00
parent 6da2183583
commit 74c21ee5cc
3000 changed files with 11794 additions and 15301 deletions

View File

@@ -0,0 +1,23 @@
/* Constrains the main container */
.dynamic-content-container {
width: 100%;
max-width: 100vw;
overflow-x: hidden;
word-wrap: break-word;
}
/* Forces images, videos, and iframes to scale down to the screen size */
.dynamic-content-container img,
.dynamic-content-container video,
.dynamic-content-container iframe {
width: 100%;
height: auto;
}
/* Handles wide tables by adding a scrollbar just to the table */
.dynamic-content-container table {
display: block;
max-width: 100%;
overflow-x: auto;
white-space: nowrap;
}