Create sticky note element

This commit is contained in:
Idrees Hassan
2025-08-16 17:14:24 -04:00
parent 674142351f
commit 9f3b36adb7
6 changed files with 206 additions and 7 deletions

View File

@@ -59,7 +59,6 @@
flex-direction: column;
animation: pop-in 0.08s;
transition-timing-function: ease-in;
/* drop-shadow(0 0 0 var(--border-color)); */
}
#birb-menu {
@@ -289,4 +288,32 @@
padding-bottom: 4px;
font-size: 14px;
color: rgb(124, 108, 75);
}
.birb-sticky-note {
position: absolute;
box-sizing: border-box;
}
.birb-sticky-note > .birb-window-content {
padding: 0;
}
.birb-sticky-note-input {
width: 100%;
height: 100%;
padding: 10px;
resize: both;
min-width: 100%;
min-height: 130px;
box-sizing: border-box;
font-family: "Monocraft", monospace;
font-size: 14px;
color: black;
background-color: transparent;
border: none;
}
.birb-sticky-note-input:focus {
outline: none;
}