Fix bug where metatagging would not fully calculate in some cases
This commit is contained in:
parent
27a43fdbe0
commit
65470cbac5
8 changed files with 34 additions and 20 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
clear: right;
|
||||
}
|
||||
|
||||
.wikipedia-article svg, img {
|
||||
.wikipedia-article svg, .wikipedia-article img {
|
||||
width: unset;
|
||||
height: unset;
|
||||
display: unset;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue