mirror of
https://github.com/remvze/moodist.git
synced 2026-03-10 22:13:15 +08:00
feat: add simple notepad
This commit is contained in:
26
src/components/toolbox/notepad/notepad.module.css
Normal file
26
src/components/toolbox/notepad/notepad.module.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user