Minor design update for roles list in settings.
This commit is contained in:
parent
162ea6ac81
commit
e53f7fdc08
3 changed files with 17 additions and 5 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
20241218
|
20241218.1
|
||||||
|
|
|
@ -4,13 +4,12 @@
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 200px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings__role__collection {
|
.settings__role__collection {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
flex-direction: column;
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,14 +18,25 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.settings__role__name {
|
.settings__role__name {
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
line-height: 1.7em;
|
line-height: 1.7em;
|
||||||
border-bottom: 1px solid var(--accent-colour);
|
|
||||||
padding: 0 5px;
|
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 {
|
.settings__role__description {
|
||||||
|
|
|
@ -80,6 +80,8 @@
|
||||||
{{ role.name }}
|
{{ role.name }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="settings__role__separator"></div>
|
||||||
|
|
||||||
<div class="settings__role__description">
|
<div class="settings__role__description">
|
||||||
{{ role.description }}
|
{{ role.description }}
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in a new issue