mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
style: kanban horizontal scrollbar added (#372)
This commit is contained in:
parent
a4dc4d1f15
commit
fef72ccc70
@ -40,7 +40,7 @@ export const AllBoards: React.FC<Props> = ({
|
||||
<>
|
||||
{groupedByIssues ? (
|
||||
<div className="h-[calc(100vh-157px)] w-full lg:h-[calc(100vh-115px)]">
|
||||
<div className="flex h-full gap-x-9 overflow-x-auto overflow-y-hidden">
|
||||
<div className="flex h-full gap-x-9 overflow-x-auto horizontal-scroll-enable overflow-y-hidden">
|
||||
{Object.keys(groupedByIssues).map((singleGroup, index) => {
|
||||
const currentState =
|
||||
selectedGroup === "state_detail.name"
|
||||
|
@ -30,6 +30,21 @@
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
/* Horizontal Scrollbar style */
|
||||
.horizontal-scroll-enable{
|
||||
overflow-x: scroll;
|
||||
}
|
||||
|
||||
.horizontal-scroll-enable::-webkit-scrollbar{
|
||||
display: block;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
.horizontal-scroll-enable::-webkit-scrollbar-thumb{
|
||||
border-radius: 5px;
|
||||
background-color: #9ca3af;
|
||||
}
|
||||
/* end Horizontal Scrollbar style */
|
||||
.scrollbar-enable::-webkit-scrollbar {
|
||||
display: block;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user