feat: add simple notepad

This commit is contained in:
MAZE
2024-02-24 16:06:53 +03:30
parent 38c11f124e
commit e923559709
15 changed files with 157 additions and 5 deletions

View File

@@ -0,0 +1,26 @@
.header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
& .label {
font-size: var(--font-sm);
font-weight: 500;
color: var(--color-foreground-subtle);
}
}
.textarea {
width: 100%;
height: 350px;
padding: 12px;
line-height: 1.6;
color: var(--color-foreground-subtle);
resize: none;
background-color: var(--color-neutral-50);
border: 1px solid var(--color-neutral-200);
border-radius: 4px;
outline: none;
scroll-padding-bottom: 12px;
}