Refactor/themes (#311)

* refactor: theme
This commit is contained in:
RealityBoy
2022-07-26 13:16:44 +08:00
committed by GitHub
parent 708ce43e00
commit d824c99489
62 changed files with 1100 additions and 1066 deletions

View File

@@ -18,13 +18,12 @@ const url = ref(`${VITE_PUBLIC_PATH}html/button.html`);
<span class="font-medium">通过iframe引入按钮页面</span>
</div>
</template>
<iframe :src="url" frameborder="0" class="iframe" />
<iframe :src="url" frameborder="0" class="iframe w-full h-60vh" />
</el-card>
</template>
<style scoped>
<style lang="scss" scoped>
.iframe {
width: 100%;
height: 60vh;
filter: invert(0.9) hue-rotate(180deg);
}
</style>