美文网首页
flask_admin设置宽度为全屏

flask_admin设置宽度为全屏

作者: 冰_Angus | 来源:发表于2020-03-26 18:48 被阅读0次
    {% extends 'admin/base.html' %}
    
    {% block head_tail %}
        {{ super() }}
        <link href="{{ url_for('static', filename='layout.css') }}" rel="stylesheet">
        <style>
            .container {
                width: 100%;
            }
        </style>
    {% endblock %}
    

    相关文章

      网友评论

          本文标题:flask_admin设置宽度为全屏

          本文链接:https://www.haomeiwen.com/subject/wytenctx.html