Skip to content

Commit

Permalink
Fix the height of empty cells in datagrids on small devices
Browse files Browse the repository at this point in the history
  • Loading branch information
javiereguiluz committed Jul 11, 2024
1 parent 53863da commit b2de271
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions assets/css/easyadmin-theme/datagrids.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ table.datagrid {
}
table.datagrid:not(.datagrid-empty) tr:not(.empty-row) td {
box-shadow: inset 0 1px 0 var(--table-cell-border-color);
min-height: 36px;
padding-left: 35%;
position: relative;
}
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/Resources/public/entrypoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"entrypoints": {
"app": {
"css": [
"/app.11fbf20a.css",
"/app.11fbf20a.rtl.css"
"/app.19616e33.css",
"/app.19616e33.rtl.css"
],
"js": [
"/app.5a01f8c5.js"
Expand Down
4 changes: 2 additions & 2 deletions src/Resources/public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"app.css": "app.11fbf20a.css",
"app.rtl.css": "app.11fbf20a.rtl.css",
"app.css": "app.19616e33.css",
"app.rtl.css": "app.19616e33.rtl.css",
"app.js": "app.5a01f8c5.js",
"form.js": "form.6e84c31d.js",
"page-layout.js": "page-layout.3347892e.js",
Expand Down

0 comments on commit b2de271

Please sign in to comment.