我正在使用vue在网站上嵌入推文。我有一些代码可以在这个组件中生成推文,并且在调用时它可以工作,但是我无法按照我想要的方式设置它(特别是在移动设备上,它太小了)。我尝试了一些不同的样式,但没有人编辑推文。在更改任何内容后,.tweet {}样式或注释代码中几乎没有任何内容。我希望它能够在手机上填充手机增加文字大小的宽度。救命?谢谢!
<template>
<div>
<component-view :id="'891397134662193152'" class="tweet"></component-view>
</div>
</template>
<script>
export default {
name: 'tweets',
components: {
'component-view': Tweet
},
}
</script>
<style scoped>
.tweet {
font-size: 30px;
background-size: 600px;
width:100%;
margin:0 auto;
max-width: 1000px;
}
/*.tweet a {
font-size: 70px;
font-weight: normal;
line-height: 20px;
}*/
/*.tweet p.Tweet-text.e-entry-title {
width:100% !important;
}*/
</style>