Minor design update for roles list in settings.

This commit is contained in:
Pachira 2024-12-18 03:26:44 +00:00
parent 162ea6ac81
commit e53f7fdc08
3 changed files with 17 additions and 5 deletions

View file

@ -1 +1 @@
20241218
20241218.1

View file

@ -4,13 +4,12 @@
border-radius: 2px;
margin: 2px;
overflow: hidden;
width: 200px;
}
.settings__role__collection {
display: flex;
flex-wrap: wrap;
justify-content: center;
flex-direction: column;
margin: 2px;
}
@ -19,14 +18,25 @@
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.settings__role__name {
font-size: 1.2em;
line-height: 1.7em;
border-bottom: 1px solid var(--accent-colour);
padding: 0 5px;
margin: 2px 0;
min-width: 160px;
text-align: right;
}
.settings__role__separator {
flex-grow: 0;
flex-shrink: 0;
background-color: var(--accent-colour);
width: 1px;
align-self: stretch;
margin: 5px 0;
}
.settings__role__description {

View file

@ -80,6 +80,8 @@
{{ role.name }}
</div>
<div class="settings__role__separator"></div>
<div class="settings__role__description">
{{ role.description }}
</div>