This commit is contained in:
wilsonfreitas
2024-03-26 01:23:48 +00:00
parent 3d252e2ef1
commit ec27a90d9c
3 changed files with 25 additions and 3 deletions
+1 -1
View File
@@ -185,7 +185,7 @@ ul.task-list li input[type="checkbox"] {
<div>
<div class="quarto-title-meta-heading">Modified</div>
<div class="quarto-title-meta-contents">
<p class="date-modified">March 25, 2024</p>
<p class="date-modified">March 26, 2024</p>
</div>
</div>
+3 -2
View File
File diff suppressed because one or more lines are too long
+21
View File
@@ -0,0 +1,21 @@
@layer htmltools {
.html-fill-container {
display: flex;
flex-direction: column;
/* Prevent the container from expanding vertically or horizontally beyond its
parent's constraints. */
min-height: 0;
min-width: 0;
}
.html-fill-container > .html-fill-item {
/* Fill items can grow and shrink freely within
available vertical space in fillable container */
flex: 1 1 auto;
min-height: 0;
min-width: 0;
}
.html-fill-container > :not(.html-fill-item) {
/* Prevent shrinking or growing of non-fill items */
flex: 0 0 auto;
}
}