main

mattermost/focalboard

Last updated at: 29/12/2023 09:47

grip.scss

TLDR

This file defines the styling for a "GripIcon" widget.

Classes

GripIcon

This class defines the styling for the "GripIcon" widget. It sets the fill color to a semi-transparent version of the "center-channel-color" defined in the project theme. The stroke is set to none, and the width and height are both set to 24 pixels.

.GripIcon {
    fill: rgb(var(--center-channel-color-rgb), 0.5);
    stroke: none;
    width: 24px;
    height: 24px;
}