main

mattermost/focalboard

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

quote.scss

TLDR

This file contains the stylesheet for the "quote" block component in the "blocksEditor" module. It defines the styling for the input element inside the block and the block itself.

Classes

Quote

This class represents the "quote" block component in the "blocksEditor" module. It sets the width of the block to 100%.

END

.Editor .Quote input {
    width: calc(100% - 80px);
}

.Quote {
    width: 100%;
}