forked from github/plane
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 ? (
|
{groupedByIssues ? (
|
||||||
<div className="h-[calc(100vh-157px)] w-full lg:h-[calc(100vh-115px)]">
|
<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) => {
|
{Object.keys(groupedByIssues).map((singleGroup, index) => {
|
||||||
const currentState =
|
const currentState =
|
||||||
selectedGroup === "state_detail.name"
|
selectedGroup === "state_detail.name"
|
||||||
|
@ -30,6 +30,21 @@
|
|||||||
-webkit-font-smoothing: antialiased;
|
-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 {
|
.scrollbar-enable::-webkit-scrollbar {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user