We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1545e0c commit 8712d87Copy full SHA for 8712d87
src/unfold/templates/unfold/widgets/url.html
@@ -1,7 +1,9 @@
1
-<div class="flex flex-row gap-2 items-center">
2
- {% include "django/forms/widgets/input.html" %}
+<div class="flex flex-col gap-2">
+ {% include "django/forms/widgets/input.html" %}
3
4
- {% if url_valid %}
5
- {{ current_label }} <a href="{{ widget.href }}" class="text-primary-600 dark:text-primary-500">{{ widget.value }}</a>
6
- {% endif %}
+ {% if url_valid %}
+ <p class="text-xs">
+ {{ current_label }} <a href="{{ widget.href }}" class="text-primary-600 dark:text-primary-500">{{ widget.value }}</a>
7
+ </p>
8
+ {% endif %}
9
</div>
0 commit comments