1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2025-03-03 15:32:25 +02:00
obsidian-livesync/styles.css

21 lines
327 B
CSS
Raw Normal View History

2021-10-12 23:50:13 +09:00
.added {
color: black;
2021-10-12 23:50:13 +09:00
background-color: white;
}
.normal {
color: lightgray;
2021-10-12 23:50:13 +09:00
}
.deleted {
color: white;
2021-10-12 23:50:13 +09:00
background-color: black;
/* text-decoration: line-through; */
}
.op-scrollable {
overflow-y: scroll;
2021-10-12 23:50:13 +09:00
/* min-height: 280px; */
max-height: 280px;
}
.op-pre {
white-space: pre-wrap;
}