[main] Score fixes
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 34s

This commit is contained in:
2024-12-21 02:16:29 +01:00
parent 9a3039b011
commit 4c33ada9b2
11 changed files with 4 additions and 4 deletions

Binary file not shown.

View File

@@ -2531,7 +2531,7 @@ button:disabled,
} }
.modal-content img { .modal-content img {
display: block; display: block;
height: auto; height: auto !important;
max-width: 95%; /* Maks bredde på 90% af modalens bredde */ max-width: 95%; /* Maks bredde på 90% af modalens bredde */
max-height: 78vh; /* Maks højde på 80% af viewporten */ max-height: 78vh; /* Maks højde på 80% af viewporten */
margin-bottom: 20px; margin-bottom: 20px;

View File

@@ -68,7 +68,7 @@ $button-color: #000;
img { img {
display: block; // Sørg for, at img ikke har default inline opførsel display: block; // Sørg for, at img ikke har default inline opførsel
height: auto; height: auto !important;
max-width: 95%; /* Maks bredde på 90% af modalens bredde */ max-width: 95%; /* Maks bredde på 90% af modalens bredde */
max-height: 78vh; /* Maks højde på 80% af viewporten */ max-height: 78vh; /* Maks højde på 80% af viewporten */
margin-bottom: 20px; margin-bottom: 20px;

View File

@@ -10,7 +10,7 @@
</header> </header>
<span class="image main"> <span class="image main">
<img src="static/images/pic11.jpg" alt="Portugal" /> <img src="static/images/pic11.jpg" alt="Portugal" width="500" height="200"/>
</span> </span>
<hr class="major" /> <hr class="major" />

View File

@@ -26,7 +26,7 @@
{% for favorite in data.favorites %} {% for favorite in data.favorites %}
<article> <article>
<a href="{{ favorite.path }}" class="image"> <a href="{{ favorite.path }}" class="image">
<img src="/static/{{favorite.image}}" alt="{{ favorite.name }}" /> <img src="/static/{{favorite.image}}" alt="{{ favorite.name }}" height=300 width=40/>
</a> </a>
<p><b>{{ favorite.path }}</b>: {{ favorite.description }}</p> <p><b>{{ favorite.path }}</b>: {{ favorite.description }}</p>
</article> </article>