main

mattermost/focalboard

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

entryComponent.scss

TLDR

This file contains styles for the EntryComponent component of the MarkdownEditorInput component.

Classes

EntryComponent

The EntryComponent class is responsible for styling the main container element for the EntryComponent component. It sets the display to flex, aligns the items to the center, justifies the content space-between, and sets the width to 100%.

EntryComponent__left

The EntryComponent__left class is responsible for styling the left section of the EntryComponent component. It sets the display to flex and aligns the items to the center.

EntryComponent__hint

The EntryComponent__hint class is responsible for styling the hint text within the EntryComponent component. It sets the opacity to 0.56.

.EntryComponent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    .EntryComponent__left {
        display: flex;
        align-items: center;
    }

    .EntryComponent__hint {
        opacity: 0.56;
    }
}