fix(ui): transparent problem

This commit is contained in:
무라쿠모 2024-07-25 21:03:02 +09:00
parent 468be3f0fe
commit 261d8785dd
No known key found for this signature in database
GPG key ID: 139D6573F92DA9F7
2 changed files with 3 additions and 3 deletions

View file

@ -65,7 +65,7 @@ defineExpose({
background: var(--bg); background: var(--bg);
.note { .note {
background: var(--panel); // background: var(--panel);
border-radius: var(--radius); border-radius: var(--radius);
} }
} }

View file

@ -52,11 +52,11 @@ const pagination = computed(() => tab.value === 'featured' ? {
<style lang="scss" module> <style lang="scss" module>
.tab { .tab {
padding: calc(var(--margin) / 2) 0; padding: calc(var(--margin) / 2) 0;
background: var(--bg); // background: var(--bg);
} }
.tl { .tl {
background: var(--bg); // background: var(--bg);
border-radius: var(--radius); border-radius: var(--radius);
overflow: clip; overflow: clip;
} }