main

mattermost/focalboard

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

showSidebar.scss

TLDR

This file defines the styling for the ShowSidebarIcon widget.

Classes

.ShowSidebarIcon

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

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