YukiGasai / obsidian-google-calendar

Add Google Calendar inside Obsidian
https://yukigasai.github.io/obsidian-google-calendar/
GNU General Public License v3.0
359 stars 25 forks source link

Disable recurrency symbol in scheduled view #186

Closed machado-t closed 12 months ago

machado-t commented 12 months ago

I don't find this symbol useful and it kinda looks off centered in my vault. Could it be optional or disabled somehow?

image

YukiGasai commented 12 months ago

Hi, you can add a custom CSS snipped under the Obsidian-Setting "Appearance" with the following code:

.gcal-schedule-circle-container-recurring::after {
    display: none;
}
machado-t commented 12 months ago

Great! It works Thanks!