-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from DOI-USGS/pkgdown
extra sources
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
docs/articles/flow-table_files/htmltools-fill-0.5.8.1/fill.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} | ||
} |