Skip to content

Commit

Permalink
fix(carousel): adjust scrolling area
Browse files Browse the repository at this point in the history
  • Loading branch information
m4olivei committed Jan 18, 2023
1 parent a06f986 commit 2cbd520
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright IBM Corp. 2016, 2022
* Copyright IBM Corp. 2016, 2023
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
Expand Down Expand Up @@ -97,6 +97,7 @@
display: flex;
flex-direction: column;
padding: $spacing-07 0 $spacing-05 0;
overflow-y: auto;
}

@include carbon--breakpoint-down('lg') {
Expand All @@ -111,7 +112,6 @@

@include carbon--breakpoint('lg') {
flex-direction: row;
height: 100%;
}
}

Expand All @@ -136,7 +136,7 @@
@include carbon--make-col-ready;
@include carbon--make-col(12, 16);

width: auto;
width: 100%;
flex: none;
/* stylelint-disable-next-line property-no-unknown */
aspect-ratio: 16 / 9;
Expand Down

0 comments on commit 2cbd520

Please sign in to comment.