main

mattermost/focalboard

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

separatorOption.scss

TLDR

This file defines the styling for a menu separator widget.

Class MenuSeparator

This class is responsible for setting the styling of the menu separator widget. It sets a solid bottom border with a 1px width and a semi-transparent color with an alpha value of 0.16. It also applies a margin of 8px at the top and bottom.

.MenuSeparator {
    border-bottom: solid 1px rgba(var(--center-channel-color-rgb), 0.16);
    margin: 8px 0;
}