mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 08:46:15 -04:00
33 lines
612 B
Vue
33 lines
612 B
Vue
![]() |
<script setup lang="ts">
|
||
|
import { useThemeVars } from 'naive-ui';
|
||
|
import Memo from './regex-memo.content.md';
|
||
|
|
||
|
const themeVars = useThemeVars();
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<Memo />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
::v-deep(pre) {
|
||
|
margin: 0;
|
||
|
padding: 15px 22px;
|
||
|
background-color: v-bind('themeVars.cardColor');
|
||
|
border-radius: 4px;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
::v-deep(table) {
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
::v-deep(table), ::v-deep(td), ::v-deep(th) {
|
||
|
border: 1px solid v-bind('themeVars.textColor1');
|
||
|
padding: 5px;
|
||
|
}
|
||
|
::v-deep(a) {
|
||
|
color: v-bind('themeVars.textColor1');
|
||
|
}
|
||
|
</style>
|