Skip to content

Commit

Permalink
クラスの命名を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
takusea committed Dec 17, 2023
1 parent 1ca6676 commit 51ad385
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/base/BaseScrollArea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<slot />
</ScrollAreaViewport>
<ScrollAreaScrollbar class="ScrollAreaScrollbar" orientation="horizontal">
<ScrollAreaThumb class="ScrollAreaThumbContainer">
<div class="ScrollAreaThumb"></div>
<ScrollAreaThumb class="ScrollAreaThumb">
<div class="thumb"></div>
</ScrollAreaThumb>
</ScrollAreaScrollbar>
<ScrollAreaScrollbar class="ScrollAreaScrollbar" orientation="vertical">
<ScrollAreaThumb class="ScrollAreaThumbContainer">
<div class="ScrollAreaThumb"></div>
<ScrollAreaThumb class="ScrollAreaThumb">
<div class="thumb"></div>
</ScrollAreaThumb>
</ScrollAreaScrollbar>
</ScrollAreaRoot>
Expand Down Expand Up @@ -54,11 +54,11 @@ import {
height: vars.$size-scrollbar;
}
.ScrollAreaThumbContainer {
.ScrollAreaThumb {
padding: 4px;
}
.ScrollAreaThumb {
.thumb {
width: 100%;
height: 100%;
background-color: #0002;
Expand All @@ -67,7 +67,7 @@ import {
transition: background-color vars.$transition-duration;
}
.ScrollAreaScrollbar:hover .ScrollAreaThumb {
.ScrollAreaScrollbar:hover .thumb {
background-color: #0003;
}
</style>

0 comments on commit 51ad385

Please sign in to comment.