-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathnote.module.css
More file actions
51 lines (45 loc) · 826 Bytes
/
note.module.css
File metadata and controls
51 lines (45 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.noteTitleContainer {
fill: var(--bg-note);
}
.noteTitle {
width: 100%;
text-align: left;
font-size: 14px;
font-weight: bold;
line-height: 1.4;
color: var(--text-dark);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.noteBody {
fill: var(--bg-note);
}
.noteBodyText {
width: 100%;
height: 100%;
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 11;
line-clamp: 11;
word-wrap: break-word;
word-break: break-word;
font-size: 14px;
line-height: 1.5;
color: var(--text-dark);
white-space: pre-wrap;
}
.noteContainer {
cursor: grabbing;
}
.noteBorder {
fill: var(--bg-note);
stroke: var(--border-note);
stroke-width: 1;
}
.editIcon {
color: var(--text-dark);
}