Skip to content

Commit

Permalink
#47 [Kanban] fix: kanban cards & column width
Browse files Browse the repository at this point in the history
  • Loading branch information
theodaviddd committed Jan 7, 2025
1 parent db2bd9d commit a1f46c2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion css/digikanban.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 8 additions & 6 deletions css/scss/modules/_kanban.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ body {
background-color: #f4f4f4;
border-radius: 8px;
padding: 10px;
width: 30%;
width: 300px;
min-width: 350px;
min-height: 500px;
max-height: 600px;
min-width: 300px;
overflow-y: auto;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
flex: 0 0 auto;
}
.kanban-column-header {
display: flex;
Expand Down Expand Up @@ -164,15 +165,16 @@ body {
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
padding: 10px 15px;
cursor: grab;
margin-bottom: 10px;
max-width: 270px;
justify-content: center;
width: 90%;
margin-left: auto;
margin-right: auto;
cursor: grab;
max-width: unset;
display: flex;
flex-direction: column;
font-family: Arial, sans-serif;
}

.kanban-card-header {
font-weight: bold;
font-size: 14px;
Expand Down

0 comments on commit a1f46c2

Please sign in to comment.