Skip to content

Commit

Permalink
chore: styles naming fix
Browse files Browse the repository at this point in the history
  • Loading branch information
manneredboor committed Apr 12, 2024
1 parent d26b5ae commit afa0338
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const MEDIA_MOBILE_HEIGHT = `(max-height: 640px)`;
type ScrollbarProps = {
$isSupportedCustomScrollbar: boolean;
};
const getScrollBoxCss = css<ScrollbarProps>`
const scrollBoxCss = css<ScrollbarProps>`
${({ theme, $isSupportedCustomScrollbar }) => css`
overflow-y: scroll;
overflow-x: hidden;
Expand Down Expand Up @@ -71,7 +71,7 @@ export const ContentWrapper = styled.div<ScrollbarProps>`
flex: 0 1 auto;
@media ${MEDIA_MOBILE_HEIGHT} {
${getScrollBoxCss}
${scrollBoxCss}
flex: 1 1 auto;
&::-webkit-scrollbar-track {
Expand Down Expand Up @@ -125,7 +125,7 @@ export const WalletsButtonsScrollBox = styled.div<WalletsButtonsScrollBox>`
flex-direction: column;
@media ${MEDIA_DESKTOP_HEIGHT} {
${getScrollBoxCss}
${scrollBoxCss}
${$isCompact
? css`
max-height: 350px;
Expand Down

0 comments on commit afa0338

Please sign in to comment.