-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(app-crm): overflow:scroll added to kanban (#4884)
Co-authored-by: Ali Emir Şen <[email protected]>
- Loading branch information
1 parent
9c65102
commit 5f1dc62
Showing
5 changed files
with
61 additions
and
40 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
examples/app-crm/src/components/kanban/board/index.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
.container { | ||
height: 100%; | ||
width: 100%; | ||
overflow-x: scroll; | ||
overflow-y: hidden; | ||
overflow: scroll; | ||
display: flex; | ||
gap: 32px; | ||
padding: 0 32px; | ||
} | ||
|
||
.wrapper { | ||
width: calc(100% + 64px); | ||
display: flex; | ||
flex-direction: column; | ||
margin: -32px; | ||
height: calc(100vh - 64px); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters