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 422bf42 commit a810187Copy full SHA for a810187
src/unfold/templates/unfold/widgets/url.html
@@ -1,4 +1,7 @@
1
-{% if url_valid %}
2
- {{ current_label }} <a href="{{ widget.href }}" class="text-primary-600 dark:text-primary-500">{{ widget.value }}</a>
3
-{% endif %}
4
-{% include "django/forms/widgets/input.html" %}
+<div class="flex flex-row gap-2 items-center">
+ {% include "django/forms/widgets/input.html" %}
+
+ {% if url_valid %}
5
+ {{ current_label }} <a href="{{ widget.href }}" class="text-primary-600 dark:text-primary-500">{{ widget.value }}</a>
6
+ {% endif %}
7
+</div>
0 commit comments