diff --git a/issues/templates/issues/issue_stacktrace.html b/issues/templates/issues/issue_stacktrace.html
index 1e67c5c..0a447b5 100644
--- a/issues/templates/issues/issue_stacktrace.html
+++ b/issues/templates/issues/issue_stacktrace.html
@@ -35,9 +35,9 @@
{# filename, function, lineno #}
{% if frame.in_app %}
- {{ frame.filename }}{% if frame.function %} in {{ frame.function }}{% endif %} line {{ frame.lineno }}.
+ {{ frame.filename }}{% if frame.function %} in {{ frame.function }}{% endif %}{% if frame.lineno %} line {{ frame.lineno }}{% endif %}.
{% else %}
- {{ frame.filename }}{% if frame.function %} in {{ frame.function }}{% endif %} line {{ frame.lineno }}.
+ {{ frame.filename }}{% if frame.function %} in {{ frame.function }}{% endif %}{% if frame.lineno%} line {{ frame.lineno }}{% endif %}.
{% endif %}
diff --git a/theme/static/css/dist/styles.css b/theme/static/css/dist/styles.css
index 2a1d1a8..07c7d14 100644
--- a/theme/static/css/dist/styles.css
+++ b/theme/static/css/dist/styles.css
@@ -838,10 +838,6 @@ select {
margin-right: auto;
}
-.mb-12 {
- margin-bottom: 3rem;
-}
-
.mb-2 {
margin-bottom: 0.5rem;
}
@@ -1028,18 +1024,10 @@ select {
appearance: none;
}
-.flex-row-reverse {
- flex-direction: row-reverse;
-}
-
.flex-col {
flex-direction: column;
}
-.flex-col-reverse {
- flex-direction: column-reverse;
-}
-
.place-content-end {
place-content: end;
}
@@ -1142,10 +1130,6 @@ select {
border-top-width: 2px;
}
-.border-dashed {
- border-style: dashed;
-}
-
.border-dotted {
border-style: dotted;
}
@@ -1234,16 +1218,6 @@ select {
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
-.bg-green-500 {
- --tw-bg-opacity: 1;
- background-color: rgb(34 197 94 / var(--tw-bg-opacity));
-}
-
-.bg-slate-500 {
- --tw-bg-opacity: 1;
- background-color: rgb(100 116 139 / var(--tw-bg-opacity));
-}
-
.bg-gradient-to-r {
background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
@@ -1433,11 +1407,6 @@ select {
color: rgb(30 41 59 / var(--tw-text-opacity));
}
-.text-white {
- --tw-text-opacity: 1;
- color: rgb(255 255 255 / var(--tw-text-opacity));
-}
-
.line-through {
text-decoration-line: line-through;
}