feat: prevent text-wrapping on some big tables

This commit is contained in:
Herculino Trotta
2024-11-12 22:39:21 -03:00
parent 1fd9ab67ca
commit a56e6a5b64
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@
<div class="border p-3 rounded-3 table-responsive"> <div class="border p-3 rounded-3 table-responsive">
{% if accounts %} {% if accounts %}
<table class="table table-hover"> <table class="table table-hover text-nowrap">
<thead> <thead>
<tr> <tr>
<th scope="col" class="col-auto"></th> <th scope="col" class="col-auto"></th>

View File

@@ -7,7 +7,7 @@
{% endif %} {% endif %}
{% if exchange_rates %} {% if exchange_rates %}
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-hover"> <table class="table table-hover text-nowrap">
<thead> <thead>
<tr> <tr>
<th scope="col" class="col-auto"></th> <th scope="col" class="col-auto"></th>