main

mattermost/focalboard

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

divider.scss

TLDR

This file defines the styling for a DividerIcon class, which is used to display a divider icon.

Classes

DividerIcon

The DividerIcon class is used to style a divider icon. It sets the fill color to currentColor, removes the stroke style, and sets the width and height to 24 pixels.

.DividerIcon {
    fill: currentColor;
    stroke: none;
    width: 24px;
    height: 24px;
}