Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@itwin/imodel-browser-react",
"comment": "use consistent tile size in iModel and iTwin grids",
"type": "patch"
}
],
"packageName": "@itwin/imodel-browser-react"
}
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ const ITwinGridMUIInternal = ({
sx={{
display: "grid",
gap: 2,
gridTemplateColumns: "repeat(auto-fill, minmax(18rem, 1fr))",
gridTemplateColumns: "repeat(auto-fill, 18rem)",
listStyle: "none",
alignItems: "stretch",
"& > li": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ const IModelGridInternal = ({
sx={{
display: "grid",
gap: 2,
gridTemplateColumns: "repeat(auto-fill, minmax(18rem, 1fr))",
gridTemplateColumns: "repeat(auto-fill, 18rem)",
listStyle: "none",
alignItems: "stretch",
"& > li": {
Expand Down
Loading