It would be great if there were specific classes (or IDs) on some html elements because it would be easier to use the "Additional style" functionality to target and customize UI elements.
Type of feature
User Interface (UI)
Additional context
I would like to have a grid view for note cards. It could be easily achieved with a few lines of CSS. However, CSS selectors must be very complex to target specific elements. Here is an example:
Instead of main > section > div > div > div:has(> .group), it could be .memos
Instead of main > section > div > div > div:has(> .group) div:has(> div > relative-time), it could be .memo-time
Describe the solution you'd like
It would be great if there were specific classes (or IDs) on some html elements because it would be easier to use the "Additional style" functionality to target and customize UI elements.
Type of feature
User Interface (UI)
Additional context
I would like to have a grid view for note cards. It could be easily achieved with a few lines of CSS. However, CSS selectors must be very complex to target specific elements. Here is an example:
main > section > div > div > div:has(> .group)
, it could be.memos
main > section > div > div > div:has(> .group) div:has(> div > relative-time)
, it could be.memo-time