Skip to content

Commit

Permalink
bug #6197 Fix some nested CSS styles (javiereguiluz)
Browse files Browse the repository at this point in the history
This PR was merged into the 4.x branch.

Discussion
----------

Fix some nested CSS styles

Fixes #6175.

Commits
-------

75e1efc Fix some nested CSS styles
  • Loading branch information
javiereguiluz committed Mar 12, 2024
2 parents 6f6b3fd + 75e1efc commit 56c98f6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
9 changes: 5 additions & 4 deletions assets/css/easyadmin-theme/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,15 @@ pre {

/* Layout
========================================================================= */
.wrapper {
@media(min-width: 992px) {
@media(min-width: 992px) {
.wrapper {
display: grid;
grid-template-columns: var(--sidebar-max-width) auto;
min-height: 100vh;
}

@media(min-width: 1280px) {
}
@media(min-width: 1280px) {
.wrapper {
grid-column-gap: 0;
}
}
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.018526e0.css",
"/app.018526e0.rtl.css"
"/app.c8a6d1ff.css",
"/app.c8a6d1ff.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.018526e0.css",
"app.rtl.css": "app.018526e0.rtl.css",
"app.css": "app.c8a6d1ff.css",
"app.rtl.css": "app.c8a6d1ff.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 56c98f6

Please sign in to comment.