Adding a video { width: 100%; } (#4204)

* Adding a video { width: 100%; }

This is to prevent that videos included in pages don't exceed the page border

* Reverting precedent commit

* Adding a video { max-width: 100% } instead
This commit is contained in:
SnowCode 2023-04-27 16:58:35 +02:00 committed by GitHub
parent 56f234d1ee
commit a9d952560d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -182,6 +182,10 @@ body.tox-fullscreen, body.markdown-fullscreen {
.cm-editor {
margin-bottom: 1.375em;
}
video {
max-width: 100%;
}
}
// Page content pointers
@ -452,4 +456,4 @@ body.tox-fullscreen, body.markdown-fullscreen {
@media (prefers-contrast: more) {
opacity: 1;
}
}
}