MurhafSousli / ngx-sharebuttons

Angular Share Buttons ☂
https://ngx-sharebuttons.netlify.app/
MIT License
518 stars 124 forks source link

How to use share buttons vertically? #647

Closed neal786y closed 1 year ago

neal786y commented 1 year ago

I am trying to use flex direction as column in css on

.sb-group[_ngcontent-sdu-c221],
.sb-button[_ngcontent-sdu-c221] {
    display: inline-flex;
//Added below line in inspect element to make it vertical
    flex-direction: column;
    align-items: flex-start
}

Its working in inspect element, however it's not working with actual code.

neal786y commented 1 year ago

Solved by applying same in style.css

.sb-group, .sb-button {
    display: inline-flex;
//Added below line in inspect element to make it vertical
    flex-direction: column;
    align-items: flex-start
}