From ec27a90d9c81f25d85da8b5b01d8bfd84d00bc6b Mon Sep 17 00:00:00 2001 From: wilsonfreitas Date: Tue, 26 Mar 2024 01:23:48 +0000 Subject: [PATCH] deploy: 5dbaf3321e3e045eb54c26044ef23a1a219e5625 --- index.html | 2 +- projects.html | 5 +++-- site_libs/htmltools-fill-0.5.8/fill.css | 21 +++++++++++++++++++++ 3 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 site_libs/htmltools-fill-0.5.8/fill.css 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; + } +}