我在我的一个自定义元素中设置了以下纸张对话框sekeleton。
<paper-dialog id="error_dialog">
<h2>{{error_message}}</h2>
<p>{{error_detail}}</p>
</paper-dialog>
当我收到任何错误时,我更新“error_message”和“error_detail”的值并通过调用showErrorInDialog方法
打开对话框,如下所示showErrorInDialog: function(err) {
this.error_message = err.message;
this.error_detail = err.detail;
this.$.error_dialog.opened = true;
}
但问题是,纸张对话框宽度仅根据h2标签的宽度来考虑,例如
如果h2为“错误”且“p”为“连接出错,请检查。”,然后纸张对话框宽度仅为h2中的“错误”文本。
请建议我做错了什么。