main

mattermost/focalboard

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

submenuTriangle.scss

TLDR

The submenuTriangle.scss file defines the styles for the .SubmenuTriangleIcon class, which is used to style a submenu triangle icon.

Classes

.SubmenuTriangleIcon

This class defines the styles for a submenu triangle icon. It sets the fill property to currentColor, which means it will inherit the color from its parent element. The stroke property is set to none, so there is no outline stroke around the triangle. The width and height properties are both set to 24px, specifying the dimensions of the icon.

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