Fix sticky note resizing

This commit is contained in:
Idrees Hassan
2025-08-16 18:27:03 -04:00
parent 9fca974233
commit b10cc684b9
5 changed files with 11 additions and 11 deletions

6
dist/birb.js vendored
View File

@@ -348,8 +348,8 @@ const STYLESHEET = `@font-face {
}
.birb-sticky-note-input {
width: 100% !important;
height: 100% !important;
width: 100%;
height: 100%;
padding: 10px !important;
resize: both !important;
min-width: 100% !important;
@@ -1153,7 +1153,7 @@ Promise.all([loadSpriteSheetPixels(SPRITE_SHEET), loadSpriteSheetPixels(DECORATI
clearTimeout(saveTimeout);
saveTimeout = setTimeout(() => {
save();
}, 500);
}, 250);
});
}