How do I change the icon/add text to a feedback button?

0
I added a feedback button to my app, and works just fine, but I cannot figure out how to either change the feedback icon or replace it with text? Does anyone know how to do this? Thanks!
asked
1 answers
4

Hi Jonathan,

You need to add custom styles to achieve this. Check out this forum post to see an example on how to add custom styles. 

Below is what I quickly tried on the browser to remove icon and add ‘Feedback’ text. 

.sprintrFeedback__sidebar_button--feedback::before {
    content: 'Feedback';
}

.sprintrFeedback__sidebar_button--feedback {
    background-image: unset;
}

.sprintrFeedback__sidebar_button {
    width: 100%;
}

.sprintrFeedback__sidebar {
    vertical-align: bottom;
    width: 75px;
    transform: rotate(90deg);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

Hope this helps!

answered