You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: