37 lines
540 B
SCSS
37 lines
540 B
SCSS
.matcher-board {
|
|
&__column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
&__column-content {
|
|
&::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background: #888;
|
|
border-radius: 4px;
|
|
|
|
&:hover {
|
|
background: #555;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__item {
|
|
transition:
|
|
transform 0.2s ease,
|
|
box-shadow 0.2s ease;
|
|
|
|
&:hover {
|
|
transform: translateY(-2px);
|
|
}
|
|
}
|
|
}
|