main

mattermost/focalboard

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

registrationLink.scss

TLDR

This file is a Sass file that defines the styles for a registration link component.

Classes

RegistrationLink

Defines the styles for the registration link component. It includes styles for display, flex direction, padding, color, font weight, line height, and child elements.

row

Defines the styles for a row within the registration link component. It includes styles for display, flex direction, alignment, and margin.

.spacer

Defines the styles for a spacer element within the registration link component. It includes styles for flex grow.

a.shareUrl

Defines the styles for a share URL link element within the registration link component. It includes styles for maximum width, flex grow, white space behavior, text overflow behavior, and margin.

.RegistrationLink {
    display: flex;
    flex-direction: column;
    padding: 5px;
    color: rgb(var(--center-channel-color-rgb));
    font-weight: normal;
    line-height: normal;

    > .row {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0 0 10px;
    }

    > .row:last-child {
        margin-bottom: 0;
    }

    .spacer {
        flex-grow: 1;
    }

    a.shareUrl {
        max-width: 320px;
        flex-grow: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-right: 5px;
    }
}