main

mattermost/focalboard

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

guestBadge.scss

TLDR

This file defines the styling for the GuestBadge component.

Classes

GuestBadge

This class defines the styling for the GuestBadge component. It sets the display to inline-flex, aligns items in the center, and applies margin.

GuestBadge__box

This class defines the styling for the inner box of the GuestBadge component. It sets padding, border, background, border radius, font family, font size, font weight, and line height.

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

.GuestBadge__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;
}