shopping-list/style/settings.css

31 lines
442 B
CSS
Raw Normal View History

.userprofile {
width: 30em;
max-width: 90%;
2018-10-27 19:47:45 +02:00
margin: 0 auto;
display: flex;
flex-direction: column;
border: 1px solid grey;
border-radius: 5px;
background-color: #ddd;
}
.userprofile span {
display: flex;
flex-direction: row;
align-items: center;
}
.attribute {
2018-10-27 19:47:45 +02:00
width: 6em;
padding: 1em;
2018-10-27 19:47:45 +02:00
}
.change-attribute-input {
}
.value {
padding: 1em;
}
#safeButton {
margin: 1em;
width: min-content;
float: right;
}