Skip to content

Commit 1bd2d3a

Browse files
committed
fix: datagrid styling
1 parent 87698cb commit 1bd2d3a

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

packages/modules/data-widgets/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- We fixed an issue where datagrid styling being overwritten by table styling from atlas core.
12+
- We fixed an issue where horizontal scrolling failed to show if width is too big.
13+
914
## [3.0.1] DataWidgets - 2025-07-01
1015

1116
### [3.0.1] Gallery

packages/modules/data-widgets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/data-widgets",
33
"moduleName": "Data Widgets",
4-
"version": "3.0.1",
4+
"version": "3.0.2",
55
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
66
"license": "Apache-2.0",
77
"private": true,

packages/modules/data-widgets/src/themesource/datawidgets/web/_datagrid.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,13 @@ $root: ".widget-datagrid";
410410
position: relative;
411411

412412
&-grid {
413-
display: grid !important;
413+
&.table {
414+
display: grid !important;
415+
}
416+
}
417+
418+
&-content {
419+
overflow-x: auto;
414420
}
415421

416422
&-grid-head {

0 commit comments

Comments
 (0)