main

mattermost/focalboard

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

text.scss

TLDR

This file contains the styling for a text component in the blocks editor.

Classes

TextContent

This class sets the styling for the text content component in the blocks editor. It applies a width of 100%, a border with a color of #2684ff, a border radius of 4px, and a padding of 10px.

.TextContent {
    width: 100%;
    border: 2px solid #2684ff;
    border-radius: 4px;
    padding: 10px;
}