Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions static/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
footer ul,
footer ol {
list-style: none;
padding-left: 0;
margin-left: 0;
}

footer li {
list-style: none;
Copy link

Copilot AI Aug 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The list-style: none property on individual list items is redundant since it's already applied to the parent ul and ol elements. This duplicated styling should be removed to avoid redundancy.

Suggested change
list-style: none;

Copilot uses AI. Check for mistakes.
}
21 changes: 11 additions & 10 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
rel="stylesheet"
href="{{ url_for('static', filename='pico.min.css') }}"
/>
<link
rel="stylesheet"
href="{{ url_for('static', filename='styles.css') }}"
/>
<title>{% block title %}{% endblock %}</title>
{% block extra_head %}{% endblock %}
</head>
Expand All @@ -25,18 +29,15 @@
</header>
<main class="container">{% block content %}{% endblock %}</main>
<footer class="container">
<p>
<h6>SRE</h6>
<ul style="list-style: none; padding-left: 0;">

<li>
<a
href="https://cloud.astronomer.io/cljsvo8d800yz01giqt70a7e7/dags?status=failed&state=active"
>Failing DAGs</a
>
</li>
<ul>
<li>
<a
href="https://cloud.astronomer.io/cljsvo8d800yz01giqt70a7e7/dags?status=failed&state=active"
>Failing DAGs</a
>
</li>
</ul>
</p>
</footer>
{% block extra_scripts %}{% endblock %}
</body>
Expand Down