main

mattermost/focalboard

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

dot.scss

TLDR

This file defines the styles for the "DotIcon" widget.

Classes

DotIcon

The DotIcon class defines the styles for the dot icon widget. It sets the fill color to a semi-transparent version of the --center-channel-color-rgb variable, and sets the width and height to 24 pixels.

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