

/* restores toot button */

.compose-form__publish-button-wrapper button {
  text-indent: -9999px;
  line-height: 0; /* Collapse the original line */
}

.compose-form__publish-button-wrapper button:after {
  content:'Noot! 🐧'; 
  text-indent: 0;
  display: block;
  line-height: initial; /* New content takes up original line height */
}

a[href="/publish"]  {
  text-indent: -9999px;
  line-height: 0;
}


/* restores toot button on smaller screens */

a[href="/publish"]:after {
  content:'Noot! 🐧'; 
  text-indent: 0;
  display: block;
  line-height: initial;
}

