shopping-list/style/settings.css
2018-10-29 08:45:49 +01:00

44 lines
696 B
CSS

.settings {
display: flex;
justify-content: flex-start;
flex-direction: column;
flex-wrap: wrap;
}
.pane {
border: 1px solid grey;
border-radius: 5px;
background-color: #ddd;
margin: 1em;
min-width: max-content;
max-width: 50%;
}
.userprofile-pane {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.userprofile {
width: 22em;
display: flex;
flex-direction: column;
}
.userprofile span {
display: flex;
flex-direction: row;
align-items: center;
}
.attribute {
width: 6em;
padding: 1em;
}
.change-attribute-input {
text-indent: 1em;
color: grey;
}
.value {
padding: 1em;
}
#saveButton {
align-self: flex-end;
margin: 1em;
}