/**
 * Bootstrap Icons 扩展：小程序图标
 * 用法：<i class="bi bi-miniprog"></i>（须在使用页的 footer 中已引入 bootstrap-icons.css）
 * 图形来自 img/weixin-mini-app.svg，颜色随父元素 currentColor，与官方图标一致
 */
.bi-miniprog::before {
    content: "" !important;
    font-family: inherit !important;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: url("../../../img/weixin-mini-app.svg");
    mask-image: url("../../../img/weixin-mini-app.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}
