main

mattermost/focalboard

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

image.scss

TLDR

The provided file contains CSS styles for image-related components in a blocks editor.

Classes

Image

The .Image class is used to hide the image component.

ImageView

The .ImageView class is used to set a maximum width of 400 pixels for image components.

.Image {
    display: none;
}

.ImageView {
    max-width: 400px;
}