main

mattermost/focalboard

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

gallery.scss

TLDR

This file defines the styling for the .GalleryIcon class, which sets the fill color, stroke style, width, and height properties.

Classes

GalleryIcon

The .GalleryIcon class is used to style gallery icons. It sets the fill property to currentColor, which inherits the color value from its parent element. The stroke property is set to none to remove any outline. The width and height properties are both set to 24px to ensure consistent dimensions for the gallery icons.

.GalleryIcon {
    fill: currentColor;
    stroke: none;
    width: 24px;
    height: 24px;
}