main

mattermost/focalboard

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

video.scss

TLDR

This file defines the styles for the video blocks in the blocks editor component.

Classes

Video

The Video class is responsible for hiding the video block in the editor. It sets the display property to none.

VideoView

The VideoView class sets the maximum width of the video block to 400 pixels.

.Video {
    display: none;
}

.VideoView {
    max-width: 400px;
}