diff --git a/src/routes/_components/list/ListItem.html b/src/routes/_components/list/ListItem.html index 62c3c77c..15db923b 100644 --- a/src/routes/_components/list/ListItem.html +++ b/src/routes/_components/list/ListItem.html @@ -1,4 +1,17 @@ -
+ .list-item { + opacity: 0; + pointer-events: none; + transition: opacity 0.2s linear; + contain: content; /* see https://www.w3.org/TR/2018/CR-css-contain-1-20181108/#valdef-contain-content */ + } + + .list-item.shown { + opacity: 1; + pointer-events: auto; + } + +
+