Fix bug where metatagging would not fully calculate in some cases

This commit is contained in:
Pieter Vander Vennet 2021-10-04 00:18:08 +02:00
parent 27a43fdbe0
commit 65470cbac5
8 changed files with 34 additions and 20 deletions

View file

@ -1062,12 +1062,6 @@ video {
width: min-content;
}
.w-max {
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
.w-6 {
width: 1.5rem;
}
@ -1076,6 +1070,12 @@ video {
width: 50%;
}
.w-max {
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
.min-w-min {
min-width: -webkit-min-content;
min-width: -moz-min-content;
@ -2339,6 +2339,12 @@ li::marker {
width: auto;
}
.md\:w-max {
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
.md\:grid-flow-row {
grid-auto-flow: row;
}

View file

@ -9,7 +9,7 @@
clear: right;
}
.wikipedia-article svg, img {
.wikipedia-article svg, .wikipedia-article img {
width: unset;
height: unset;
display: unset;