1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2024-12-12 09:04:06 +02:00
obsidian-livesync/styles.css
vorotamoroz 44efde7762 brushup readme
add delete handling
icon fix
2021-10-13 21:38:44 +09:00

21 lines
327 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;
}