main

mattermost/focalboard

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

checkboxElement.scss

TLDR

This file contains styling information for the checkbox element.

Classes

CheckboxElement

This class is used to apply styling to the checkbox element. It sets the display to flex, aligns items vertically in the center, and sets a minimum height of 34 pixels.

Editable

This class is nested within the CheckboxElement class. It sets the width of the element to 100%.

.CheckboxElement {
    display: flex;
    align-items: center;
    min-height: 34px;

    input {
        margin-right: 10px;
    }

    .Editable {
        width: 100%;
    }
}