.compose-form__publish-button-wrapper button, .button[href = "/publish"] {
  text-indent: -9999px;
  line-height: 0; /* Collapse the original line */
}

.compose-form__publish-button-wrapper button:after, .button[href = "/publish"]:after {
  content:'Toot!'; 
  text-indent: 0;
  display: block;
  line-height: initial; /* New content takes up original line height */
}

.compose-form__submit button.button {
  font-size: 0; /* Hide the original "Post" text */
}

.compose-form__submit button.button::after {
  content: 'Toot!'; /* Replace with "Toot!" */
  font-size: 16px; /* Adjust font size as needed to match the original button text size */
  /* You might need to adjust other styles to make it look perfect, like font-family, color etc. */
}

