main

mattermost/focalboard

Last updated at: 28/12/2023 01:38

kanbanColumn.scss

TLDR

This file contains the styling for the Kanban column component of the Demo Projects project.

Classes

.octo-board-column

This class defines the styling for the Kanban column component. When the column is being dragged over, the background color is changed to a light blue shade with reduced opacity.

.octo-board-column {
    &.dragover {
        background-color: rgba(128, 192, 255, 0.15);
    }
}