diff --git a/index.html b/index.html index ceac9405..8a85f765 100644 --- a/index.html +++ b/index.html @@ -185,7 +185,7 @@

Awesome Quant

Modified
-

March 25, 2024

+

March 26, 2024

diff --git a/projects.html b/projects.html index 428a752f..480fb753 100644 --- a/projects.html +++ b/projects.html @@ -66,6 +66,7 @@ "search-label": "Search" } } + @@ -153,8 +154,8 @@

Projects

Table 1: Projects
-
- +
+
diff --git a/site_libs/htmltools-fill-0.5.8/fill.css b/site_libs/htmltools-fill-0.5.8/fill.css new file mode 100644 index 00000000..841ea9d5 --- /dev/null +++ b/site_libs/htmltools-fill-0.5.8/fill.css @@ -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; + } +}