main

mattermost/focalboard

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

cardLimitNotification.scss

TLDR

This file contains SCSS code that styles the card limit notification component.

Classes

NotifyAdminSuccessNotify

This class applies styles to the card limit notification component. It sets the position to fixed, bottom to 173px, and height to unset.

NotificationBox__icon

This class applies styles to the icon within the card limit notification component. It sets the font size to 24px and the stroke color to the value of the variable "--online-indicator".

.NotifyAdminSuccessNotify {
    position: fixed;
    bottom: 173px;
    height: unset;

    .NotificationBox__icon {
        font-size: 24px;

        svg {
            stroke: var(--online-indicator);
        }
    }
}