Skip to content

Commit

Permalink
Merge branch '4.4' into 4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Gengar-i committed Jun 13, 2023
2 parents b82b5ae + 6c79e92 commit 5db40a0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/bundle/Resources/public/scss/_edit-header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
border-top-left-radius: $ibexa-border-radius;
border-top-right-radius: $ibexa-border-radius;
transition: all $ibexa-admin-transition-duration $ibexa-admin-transition, border-bottom-width 0;
z-index: 2;

&__container {
display: flex;
Expand Down
14 changes: 13 additions & 1 deletion src/bundle/Resources/public/scss/_main-container.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.ibexa-main-container {
$edit-container-padding: calculateRem(16px);

display: flex;
flex-wrap: nowrap;
overflow: hidden;
Expand All @@ -15,9 +17,19 @@

&--edit-container {
height: 100vh;
padding: calculateRem(16px);
padding: $edit-container-padding;
background-color: $ibexa-color-dark;

&::before {
content: '';
height: $edit-container-padding;
position: absolute;
top: 0;
width: 100%;
background-color: $ibexa-color-dark;
z-index: 2;
}

.ibexa-main-container {
&__side-column {
min-width: calculateRem(240px);
Expand Down

0 comments on commit 5db40a0

Please sign in to comment.