Skip to content

Commit 45345bc

Browse files
committed
Fix typo in CSS comment and update welcome message in base template
1 parent 9657216 commit 45345bc

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

document_analysis/document_analysis/static/css/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
}
8686

8787

88-
/* customozing the scroll bar of the website */
88+
/* customizing the scroll bar of the website */
8989
::-webkit-scrollbar {
9090
width: 10px;
9191
}

document_analysis/document_analysis/templates/base.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,7 @@
3838
<div class="flex items-center">
3939
{% if g.user %}
4040
<span class="text-white mr-4">
41-
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
42-
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
43-
d="M12 6v6m0 0v6m0-6h6m-6 0H6"></path>
44-
</svg>
41+
Welcome,
4542
{{ g.user['username'] }}
4643
</span>
4744
<a href="{{ url_for('auth.logout') }}" class="text-white hover:bg-purple-700 px-3 py-2 rounded-md">

0 commit comments

Comments
 (0)