/* Self-hosted Material Icons font — mirrors backmaco's editor font
   (public/editor/vendor/css/material-icons.css). The convenio editor saves inline
   icons in rich text as <span class="material-icons ql-icon-embed">place</span>,
   where the text is a ligature the font turns into a glyph. Frontmaco must load the
   same font, or those spans render as raw text ("place", "phone", ...). The font is
   self-hosted here (not loaded from backmaco) because cross-origin webfonts require
   CORS headers the backend does not send. */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(./material-icons.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
