diff --git a/web/app/src/assets/base.css b/web/app/src/assets/base.css index 548ed1f6..7fea8644 100644 --- a/web/app/src/assets/base.css +++ b/web/app/src/assets/base.css @@ -120,7 +120,9 @@ body { /* These two are necessary for the automatic resizing of the tasks table: */ /* Ensures that the table cannot push down the bottom of the column element, * and thus the column height is a stable reference. */ + /* Firefox does not recognize "overlay" currently, so have "auto" as fallback. */ overflow-y: auto; + overflow-y: overlay; /* Ensures the offsetParent of the table is the column itself; without this, * offsetParent would be . */ position: relative;