I am using Prodigy as a tool in which annotators will be manually assessing the sentiment of single texts. I want the annotations to be answered on a Likert scale (from 1 to 7). According to research, the Likert scale's answers choices must be organized horizontally, to limit the bias on the first responses from the top.
I don't expect programming a custom frontend to be exactly like the linked example - just organizing answer buttons horizontally instead of vertically is everything I want to achieve, but couldn't find such a setting in docs nor on the support page.
You'll need to customize the CSS of the component for this (docs). To help explain how to do this I've set up a similar recipe that uses the following examples:
Notice how the option element there has a .prodigy-option class that corresponds with the entry in this table? That means we can write custom css for it. In general that means we can just directly change the width. To do this, I'll just update the config overrides, but you can also change the prodigy.json file.