@freshworks/crayons
Version:
Crayons Web Components library
28 lines (26 loc) • 675 B
CSS
/* Need to check with designer */
/* Need to check with designer */
:host {
font-family: var(--fw-font-family, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;
}
/**
@prop --fw-icon-color: Color of the icon
@prop --fw-icon-size: Size of the icon
*/
:host {
display: inline-block;
}
.icon {
display: block;
color: var(--fw-icon-color, #12344d);
height: var(--fw-icon-size, 12px);
width: var(--fw-icon-size, 12px);
}
.icon svg {
display: block;
width: 100%;
height: 100%;
}