Increase height of textfield control widget-tweaks

I am using widget-tweaks to display a textarea field, but the default height is too small. I need it to be taller, but can’t figure out how to do that (I’m a rookie.) Can some help?

Here’s the offending code:

{% extends ‘clients/client_base.html’ %}
{% load widget_tweaks %}

{% block tab_content %}

{% csrf_token %} {{ form.notes|add_class:"form-control bg-lightyellow mb-3" }} Save Reset {% endblock tab_content %}

See the attr filter in the docs.

Thank you! Here’s what I did:

{{ form.notes|add_class:“form-control bg-lightyellow mb-3”|attr:“rows:24” }}

Works great!