1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2024-12-12 09:04:06 +02:00
obsidian-livesync/styles.css
vrtmrz 518ae46cf9 chunk splitting method changed
less change sensitivity
2021-10-17 22:10:03 +09:00

25 lines
409 B
CSS

.added {
color: black;
background-color: white;
}
.normal {
color: lightgray;
}
.deleted {
color: white;
background-color: black;
/* text-decoration: line-through; */
}
.op-scrollable {
overflow-y: scroll;
/* min-height: 280px; */
max-height: 280px;
}
.op-pre {
white-space: pre-wrap;
}
.op-warn {
border:1px solid salmon;
padding:2px;
border-radius: 4px;
}