Adjust the Compose Field in Inbox Widget

Description/Instructions

On small phones, the compose field in the inbox widget for messages can be too smal. So this CSS will make it a little bigger for those who need it. Only applies to mobile devices.

If this snippet helped, feel free to buy me a taco :)

@media(max-width: 767px){
.ts-convo-form .compose-message{
min-width: 80%;
}

.ts-convo-form{
flex-wrap: wrap !important;
padding-bottom: 15px;
justify-content: flex-end;
}
}

  • CSS
Copy Code

Let's Chat About this Snippet