cycsd / obsidian-card-note

Help you extract your thoughts more quickly in canvas
https://www.moritzjung.dev/obsidian-stats/plugins/card-note/
MIT License
30 stars 1 forks source link

position of icon #9

Closed AsleepX closed 5 months ago

AsleepX commented 5 months ago

image Now the icon will occupy the area where the text is written, resulting in inconsistency between the document properties and the width of the writing area, is it possible to have the icon displayed on the left side of the writing area instead of occupying the width of the writing area.

cycsd commented 5 months ago

You could set your obsidian-style-settings mentioned in this #6

.cn-drag-symbol{
    position: absolute;
    left:-30px
}
.markdown-source-view.mod-cm6 .cm-gutters{
    margin-inline-end: unset;
}
AsleepX commented 5 months ago

You could set your obsidian-style-settings mentioned in this #6

.cn-drag-symbol{
    position: absolute;
    left:-30px
}
.markdown-source-view.mod-cm6 .cm-gutters{
    margin-inline-end: unset;
}

Thank you very much!