/*
Keep in sync with:
https://git.sr.ht/~noelle/mastodon-ops/tree/wiki/item/custom.css
 */

/* Hide the Mastodon logo at the top of the nav sidebar */
.navigation-panel__logo {
  display: none;
}

/* Make images less tall */
.media-gallery {
  max-height: 250px;
}

/* Make emoji in picker larger */
.emoji-mart .emoji-mart-emoji * {
  --new-emoji-size: 33px;
  width: var(--new-emoji-size) !important;
  height: var(--new-emoji-size) !important;
}

/* Keep the post privacy and language buttons from wrapping and getting tall. */
.compose-form__dropdowns {
  flex-wrap: nowrap;
}


