main

mattermost/focalboard

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

sortDown.scss

TLDR

This file contains the styling for the SortDownIcon widget.

Classes

SortDownIcon

The SortDownIcon class defines the styling for the SortDownIcon widget. It sets the stroke color to a semi-transparent version of the center channel color, sets the stroke width to 8 pixels, sets the fill color to none, and sets the width and height of the icon to 24 pixels.

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