mirror of
https://github.com/martinlegend/neogdsync.git
synced 2026-07-22 14:10:28 +00:00
Lightweight Google Drive sync plugin for Obsidian. - Path-based Drive index, conflict detection, versioning - Smart/push/pull sync modes - URI handler: obsidian://neogdsync?mode=smart|push|pull - isDesktopOnly: false (iOS/Android compatible)
20 lines
391 B
CSS
20 lines
391 B
CSS
.neogdsync-btn-row {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
margin-top: 12px;
|
|
}
|
|
.neogdsync-btn-row button {
|
|
flex: 1;
|
|
min-width: 120px;
|
|
}
|
|
.neogdsync-conflict {
|
|
border-left: 3px solid var(--color-orange);
|
|
padding: 8px 12px;
|
|
margin-bottom: 8px;
|
|
background: var(--background-secondary);
|
|
border-radius: 4px;
|
|
}
|
|
.neogdsync-ribbon.is-active {
|
|
color: var(--color-green);
|
|
}
|