main

mattermost/focalboard

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

link.scss

TLDR

This file contains the SCSS styling for a link icon.

Classes

.LinkIcon

This class defines the styling for a link icon. It sets the color to a semi-transparent version of the body color, sets the font size to 18 pixels, and sets the width to 16 pixels. Additionally, it styles a pseudo-element ::before with a zero margin.


.LinkIcon {
    color: rgba(var(--body-color), 0.5);
    font-size: 18px;
    width: 16px;

    &::before {
        margin: 0 !important;
    }
}