mirror of
https://github.com/NohamR/Pocket-Bird.git
synced 2026-05-25 12:17:22 +00:00
Create sticky note element
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user