[CSS] Fixed: User panel hr elements styling.

This commit is contained in:
Eliseu Amaro 2021-10-05 23:00:16 +01:00
parent 1d6b22551b
commit 31857e1eab
4 changed files with 1 additions and 15 deletions

View File

@ -282,7 +282,7 @@
color: #2e3440; color: #2e3440;
fill: #2e3440; fill: #2e3440;
} }
.accessibility-menu, .accessibility-menu,
.set-border-accent { .set-border-accent {
border: 2px solid #2e3440; border: 2px solid #2e3440;

View File

@ -6,10 +6,6 @@
} }
.section-settings hr { .section-settings hr {
all: unset;
display: block;
height: 1px;
background-image: linear-gradient(to right, currentColor, transparent 90%);
margin-top: 0.6rem; margin-top: 0.6rem;
margin-bottom: 0.6rem; margin-bottom: 0.6rem;
} }
@ -31,14 +27,6 @@
box-sizing: border-box; box-sizing: border-box;
} }
.form .separator {
all: unset;
display: flex;
width: 2px;
background-image: linear-gradient(to bottom, currentColor, transparent 90%);
margin-right: 0.6rem;
}
.form form { .form form {
width: 100%; width: 100%;
} }

View File

@ -1,6 +1,5 @@
{% block form_account %} {% block form_account %}
<div class='form'> <div class='form'>
<div class="separator"></div>
{{ form(acc) }} {{ form(acc) }}
</div> </div>
{% endblock %} {% endblock %}

View File

@ -1,6 +1,5 @@
{% block form_profile %} {% block form_profile %}
<div class='form'> <div class='form'>
<div class="separator"></div>
{{ form(prof) }} {{ form(prof) }}
</div> </div>
{% endblock %} {% endblock %}