Dorako / pf2e-dorako-ui

MIT License
18 stars 17 forks source link

[Enhancement] Spacing between chat cards #305

Closed ksignorini closed 7 months ago

ksignorini commented 7 months ago

Is there any way you could add an option to put small extra space (maybe 5px) between chat cards? They're so jammed up together, it's sometimes hard to tell what's what.

From this: image

to this: image

Dorako commented 7 months ago

You can use custom CSS to change this exactly as you prefer, example:

.chat-message:not(:first-child) {
    margin-top: 10px;
}