main

mattermost/focalboard

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

check.scss

TLDR

This file defines the styling rules for the "CheckIcon" class, which is used to display a checkmark icon.

Classes

CheckIcon

The CheckIcon class is used to style a checkmark icon. It sets the stroke color to the current color, stroke width to 8 pixels, and fill to none. The width, height, and line-height properties are set to 1em.

.CheckIcon {
    stroke: currentColor;
    stroke-width: 8px;
    fill: none;
    width: 1em;
    height: 1em;
    line-height: 1em;
}