How to I move `label selector` in text annotation component?

@lowly2005 -- You can do this with custom CSS! (Here's how to add custom CSS to your app.) Please note that CSS overrides like this are very brittle and likely to break with future updates to Retool :wink:

<style>
  .text-annotation-container {
    display: flex;
  	flex-direction: column-reverse;
  }
</style>

1 Like