mirror of
https://github.com/apache/superset.git
synced 2026-04-18 07:35:09 +00:00
12 lines
228 B
HTML
12 lines
228 B
HTML
{% extends "appbuilder/baselayout.html" %}
|
|
|
|
{% block head_css %}
|
|
{{super()}}
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='chaudron.png') }}">
|
|
<style>
|
|
.navbar-brand a {
|
|
color: white;
|
|
}
|
|
</style>
|
|
{% endblock %}
|