Combine biography and profile tabs

This commit is contained in:
Johannes Loher 2021-07-10 21:02:48 +02:00
parent 70a4a57f51
commit b744e53f94
15 changed files with 108 additions and 45 deletions

View file

@ -75,4 +75,10 @@
.tox-edit-area {
padding: 0 8px;
}
.tox-toolbar-overlord {
background-color: transparent;
.tox-toolbar__primary {
background: transparent;
}
}
}

View file

@ -25,6 +25,7 @@ header.sheet-header {
flex: 0 0 100px;
height: 100px;
margin: variables.$margin-sm 10px variables.$margin-sm 0;
border: none;
}
.header-fields {

View file

@ -0,0 +1,28 @@
/*
* SPDX-FileCopyrightText: 2021 Johannes Loher
*
* SPDX-License-Identifier: MIT
*/
.ds4-profile {
display: flex;
flex-direction: column;
gap: 0.5em;
&__entry {
display: flex;
flex-direction: column;
align-items: center;
}
&__entry-input {
&--multiline {
resize: none;
}
}
&__entry-label {
font-size: 0.8em;
font-weight: bold;
}
}