main

mattermost/focalboard

Last updated at: 28/12/2023 01:42

filterEntry.scss

TLDR

This file defines the styles for the .FilterEntry component.

Classes (if applicable)

FilterEntry

The .FilterEntry class is used to style the FilterEntry component. It sets the display property to flex and flex-direction property to row. It also applies styles to nested elements.

.END

.FilterEntry {
    display: flex;
    flex-direction: row;

    > div {
        display: flex;
        flex-direction: row;
    }

    .Button {
        overflow: hidden;
        max-width: 220px;
        text-overflow: ellipsis;
        white-space: normal;
        display: block;
    }
}