[feat] character padding expanded to 4
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
},
|
||||
"package": {
|
||||
"productName": "RisuAI",
|
||||
"version": "1.15.5"
|
||||
"version": "1.15.6"
|
||||
},
|
||||
"tauri": {
|
||||
"allowlist": {
|
||||
|
||||
@@ -299,7 +299,7 @@
|
||||
}}><ListIcon /></button
|
||||
>
|
||||
<div class="h-8 min-h-8 w-14 min-w-14 bg-transparent" />
|
||||
<div class="h-3 min-h-3 w-14" on:dragover={(e) => {
|
||||
<div class="h-4 min-h-4 w-14" on:dragover={(e) => {
|
||||
e.preventDefault()
|
||||
e.dataTransfer.dropEffect = 'move'
|
||||
e.currentTarget.classList.add('bg-green-500')
|
||||
@@ -369,7 +369,7 @@
|
||||
{#if char.type === 'folder' && openFolders.includes(char.id)}
|
||||
<div class="w-full flex flex-col items-center py-1 mt-1 rounded-lg relative">
|
||||
<div class="absolute top-0 left-1 bg-darkbg w-full h-full rounded-lg z-0"></div>
|
||||
<div class="h-3 min-h-3 w-14 relative z-10" on:dragover={(e) => {
|
||||
<div class="h-4 min-h-4 w-14 relative z-10" on:dragover={(e) => {
|
||||
e.preventDefault()
|
||||
e.dataTransfer.dropEffect = 'move'
|
||||
e.currentTarget.classList.add('bg-green-500')
|
||||
@@ -414,7 +414,7 @@
|
||||
<SidebarAvatar src={char2.img ? getCharImage(char2.img, "plain") : "/none.webp"} size="56" rounded={IconRounded} />
|
||||
</div>
|
||||
</div>
|
||||
<div class="h-3 min-h-3 w-14 relative z-10" on:dragover={(e) => {
|
||||
<div class="h-4 min-h-4 w-14 relative z-20" on:dragover={(e) => {
|
||||
e.preventDefault()
|
||||
e.dataTransfer.dropEffect = 'move'
|
||||
e.currentTarget.classList.add('bg-green-500')
|
||||
@@ -431,7 +431,7 @@
|
||||
{/each}
|
||||
</div>
|
||||
{/if}
|
||||
<div class="h-3 min-h-3 w-14" on:dragover|preventDefault={(e) => {
|
||||
<div class="h-4 min-h-4 w-14" on:dragover|preventDefault={(e) => {
|
||||
e.dataTransfer.dropEffect = 'move'
|
||||
e.currentTarget.classList.add('bg-green-500')
|
||||
}} on:dragleave={(e) => {
|
||||
|
||||
@@ -7,7 +7,7 @@ import { cloneDeep } from 'lodash';
|
||||
|
||||
export const DataBase = writable({} as any as Database)
|
||||
export const loadedStore = writable(false)
|
||||
export let appVer = '1.15.5'
|
||||
export let appVer = '1.15.6'
|
||||
|
||||
|
||||
export function setDatabase(data:Database){
|
||||
|
||||
@@ -36,7 +36,7 @@ export default {
|
||||
'8': '2rem',
|
||||
'14': '3.5rem',
|
||||
'20': '5rem',
|
||||
'3': "0.75rem"
|
||||
'4': "0.75rem"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -1 +1 @@
|
||||
{"version":"1.15.5"}
|
||||
{"version":"1.15.6"}
|
||||
Reference in New Issue
Block a user