Fix for viewport units, remove DataTable max-height (#2247)

* Add viewport units snapshot test

* Fix snapshot app

* Update snapshots

* Update DataTable max-height to 100%

* Update CHANGELOG.md

* Remove max height from DataTable CSS
This commit is contained in:
darrenburns
2023-04-10 16:13:48 +01:00
committed by GitHub
parent b8468fff98
commit 40cc2db3b9
8 changed files with 188 additions and 9 deletions

View File

@@ -211,6 +211,11 @@ def test_css_property(file_name, snap_compare):
assert snap_compare(path_to_app)
def test_viewport_height_and_width_properties(snap_compare):
path_to_app = SNAPSHOT_APPS_DIR / "viewport_units.py"
assert snap_compare(path_to_app)
def test_multiple_css(snap_compare):
# Interaction between multiple CSS files and app-level/classvar CSS
assert snap_compare("snapshot_apps/multiple_css/multiple_css.py")