main

mattermost/focalboard

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

newVersionBanner.scss

TLDR

This file contains the SCSS code for the NewVersionBanner component. It sets the background color, text alignment, and padding for the NewVersionBanner.

Classes

.NewVersionBanner

Sets the background color to var(--prop-blue), centers the text, and adds 10 pixels of padding to the NewVersionBanner component.

.NewVersionBanner {
    background-color: var(--prop-blue);
    text-align: center;
    padding: 10px;
}