Migrate to modernize template
This commit is contained in:
39
Web/public/scss/apps/_kanban.scss
Executable file
39
Web/public/scss/apps/_kanban.scss
Executable file
@@ -0,0 +1,39 @@
|
||||
@use "../variables" as *;
|
||||
|
||||
.task-list-section {
|
||||
display: flex;
|
||||
gap: 24px;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.task-list-container {
|
||||
width: 258px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.connect-sorting {
|
||||
padding: 20px;
|
||||
border-radius: $border-radius;
|
||||
}
|
||||
|
||||
.img-task {
|
||||
cursor: grab;
|
||||
}
|
||||
|
||||
.cdk-drag-preview {
|
||||
box-sizing: border-box;
|
||||
border-radius: $border-radius;
|
||||
box-shadow: var(--mat-sys-level2);
|
||||
}
|
||||
|
||||
.cdk-drag-placeholder {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.cdk-drag-animating {
|
||||
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
.cdk-drop-list {
|
||||
padding: 0px 0px 20px 0px !important
|
||||
}
|
||||
Reference in New Issue
Block a user