From c164fe95b601bdc4dbb9f668edad24f45375587f Mon Sep 17 00:00:00 2001 From: Calvin <11654917+calvinmorett@users.noreply.github.com> Date: Fri, 11 Aug 2023 17:53:27 -0400 Subject: [PATCH] Sticky class added, for sticky alignment for .Cell --- src/grd.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/grd.css b/src/grd.css index 8095f36..add959b 100644 --- a/src/grd.css +++ b/src/grd.css @@ -24,3 +24,11 @@ .Cell.\-10of12 { width: calc(100% * 10 / 12); } .Cell.\-11of12 { width: calc(100% * 11 / 12); } .Cell.\-12of12 { width: 100%; } + +.sticky { + position: -webkit-sticky; + position: sticky; + top: 0; + height: 100%; + /*set height due to other cells, could manage height of this Cell. So setting it to 100% should set the cell, to only maintain it's current content.*/ +} \ No newline at end of file