probably fix most renamed CSS variables
This commit is contained in:
parent
544fc3239f
commit
a930fd9758
147 changed files with 399 additions and 400 deletions
|
|
@ -175,7 +175,7 @@ function reduceFrequency(): void {
|
|||
display: block;
|
||||
object-fit: contain;
|
||||
margin: auto;
|
||||
border-radius: var(--radius-xs);
|
||||
border-radius: var(--MI-radius-xs);
|
||||
}
|
||||
|
||||
.i {
|
||||
|
|
@ -185,7 +185,7 @@ function reduceFrequency(): void {
|
|||
display: grid;
|
||||
place-content: center;
|
||||
background: var(--MI_THEME-panel);
|
||||
border-radius: var(--radius-full);
|
||||
border-radius: var(--MI-radius-full);
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,6 +44,6 @@ const emit = defineEmits<{
|
|||
width: 128px;
|
||||
height: 128px;
|
||||
margin-bottom: 16px;
|
||||
border-radius: var(--radius-md);
|
||||
border-radius: var(--MI-radius-md);
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -362,7 +362,7 @@ export default function (props: MfmProps, { emit }: { emit: SetupContext<MfmEven
|
|||
const child = token.children[0];
|
||||
const unixtime = parseInt(child.type === 'text' ? child.props.text : '');
|
||||
return h('span', {
|
||||
style: 'display: inline-block; font-size: 90%; border: solid 1px var(--MI_THEME-divider); border-radius: var(--radius-ellipse); padding: 4px 10px 4px 6px;',
|
||||
style: 'display: inline-block; font-size: 90%; border: solid 1px var(--MI_THEME-divider); border-radius: var(--MI-radius-ellipse); padding: 4px 10px 4px 6px;',
|
||||
}, [
|
||||
h('i', {
|
||||
class: 'ti ti-clock',
|
||||
|
|
|
|||
|
|
@ -219,7 +219,7 @@ onUnmounted(() => {
|
|||
|
||||
&.active {
|
||||
opacity: 1;
|
||||
color: var(--accent);
|
||||
color: var(--MI_THEME-accent);
|
||||
}
|
||||
|
||||
&.animate {
|
||||
|
|
@ -249,7 +249,7 @@ onUnmounted(() => {
|
|||
bottom: 0;
|
||||
height: 3px;
|
||||
background: var(--MI_THEME-accent);
|
||||
border-radius: var(--radius-ellipse);
|
||||
border-radius: var(--MI-radius-ellipse);
|
||||
transition: none;
|
||||
pointer-events: none;
|
||||
|
||||
|
|
|
|||
|
|
@ -239,7 +239,7 @@ onUnmounted(() => {
|
|||
width: calc(var(--height) - (var(--margin)));
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
border-radius: var(--radius-xs);
|
||||
border-radius: var(--MI-radius-xs);
|
||||
|
||||
&:hover {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue