main

mattermost/focalboard

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

adminBadge.scss

TLDR

The file adminBadge.scss contains the SCSS code for styling an admin badge component.

Classes

AdminBadge

This class defines the styling for the admin badge component. It sets the display to inline-flex, aligns the items in the center, and adds margin to the top, right, bottom, and left.

AdminBadge__box

This class defines the styling for the box inside the admin badge component. It sets the padding, border, background color, border radius, font family, font size, font weight, and line height.

.AdminBadge {
    display: inline-flex;
    align-items: center;
    margin: 0 10px 0 4px;
}

.AdminBadge__box {
    padding: 2px 4px;
    border: 0;
    background: rgba(var(--center-channel-color-rgb), 0.16);
    border-radius: 2px;
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
}