main

mattermost/focalboard

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

hideSidebar.scss

TLDR

This file contains styles for the "Hide Sidebar" icon widget.

Styles

.HideSidebarIcon

This class defines the styles for the "Hide Sidebar" icon widget. It sets the stroke color to a semi-transparent version of the --center-channel-color-rgb variable, sets the stroke width to 6 pixels, sets the fill to none, and defines the width and height of the icon to 24 pixels.

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