Skip to content

Commit

Permalink
chore: update classname
Browse files Browse the repository at this point in the history
  • Loading branch information
zchsh committed Aug 9, 2023
1 parent 207301d commit d414d01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ SCROLL OVERFLOW LAYOUT
}
}

.linesScrollContainer {
.linesScrollableContent {
display: flex;
width: max-content;
min-width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion packages/code-block/partials/code-lines/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function CodeLines({
</span>
) : null}
<span className={classNames(s.linesColumn, s.styledScrollbars)}>
<span className={s.linesScrollContainer}>
<span className={s.linesScrollableContent}>
{linesOfCode.map(({ children, highlight, dim }, idx) => (
<LineOfCode key={idx} {...{ highlight, dim, padRight }}>
{children}
Expand Down

0 comments on commit d414d01

Please sign in to comment.