自分メモシリーズ
Pendoのデフォルトボタンに画像を埋め込む
- ボタンブロックを追加する
- ボタンのIDを取得する
- コードブロックのCSSを追加する
- 既存CSSを上書きするのでimportant指定が重要
/*replace with your button id*/
#pendo-button-96480497{
background: url("画像のURL") !important;
background-size: contain !important;
background-repeat: no-repeat !important;
width: 300px !important;
height: 200px !important;
}
