XF 2.2 How to float this to the bottom?

beerForo

Well-known member
I want this closer to reactions so I want to float it middle or bottom of cell, any help appreciated.

This is a Suggestion forum but also for Q&A thx!

xenforo vote align.webp
 
This in extra.less should do the trick:

Code:
.message-cell.message-cell--vote {
    display: flex;
    align-items: center;
}

Or at the bottom:

Code:
.message-cell.message-cell--vote {
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
@media (max-width: @xf-responsiveMedium) { padding-bottom: 0; }
}
 
Top Bottom