Skip to content

Commit

Permalink
#598669: [templates/nextjs-sxa] fixed styles(hide horizontal scrollbar)
Browse files Browse the repository at this point in the history
  • Loading branch information
sc-ruslanmatkovskyi committed Oct 3, 2023
1 parent 2725668 commit 7eea941
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,3 @@ ul li {
color:#fff;
max-width: 500px;
}

.editing-mode {
padding: 0 8px;
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
@import '@sass/abstracts/mixins';

$size-padding: 8px;
.container-wrapper {
width: 100%;
}

.component {
position: relative;
padding: 0 $size-padding;

@include respond-to(all-mobile) {
padding: 0;
}
}

.container {
Expand All @@ -18,5 +24,4 @@
.component-content {
@include clearfix();
}

}

0 comments on commit 7eea941

Please sign in to comment.