Add important flag to textarea

This commit is contained in:
Idrees Hassan
2025-08-16 18:18:02 -04:00
parent 2ac9edac21
commit 555d85a9a7
4 changed files with 38 additions and 38 deletions

24
dist/birb.js vendored
View File

@@ -348,18 +348,18 @@ const STYLESHEET = `@font-face {
}
.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;
width: 100% !important;
height: 100% !important;
padding: 10px !important;
resize: both !important;
min-width: 100% !important;
min-height: 130px !important;
box-sizing: border-box !important;
font-family: "Monocraft", monospace !important;
font-size: 14px !important;
color: black !important;
background-color: transparent !important;
border: none !important;
}
.birb-sticky-note-input:focus {