Newer
Older
HuangJiPC / src / components / ThemeSetting.vue
@zhangdeliang zhangdeliang on 21 Jun 487 bytes update
<template>
  <div class="theme-setting-page">
    <div class="content">
      <ContrastSharp />
    </div>
  </div>
</template>
<script>
import { ContrastSharp } from "@vicons/ionicons5";
export default {
  components: {
    ContrastSharp,
  },
};
</script>
<style lang="less">
.theme-setting-page {
  position: fixed;
  right: 30px;
  bottom: 50px;
  height: 30px;
  width: 30px;
  z-index: 999;
  .content {
    background-color: var(--base-color);
    cursor: pointer;
  }
}
</style>