mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-21 16:14:24 +03:00
33 lines
549 B
CSS
33 lines
549 B
CSS
.list-form {
|
|
padding: 8px 0;
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.list-form-row :is(input, select) {
|
|
width: 100%;
|
|
}
|
|
|
|
.list-form-footer {
|
|
display: flex;
|
|
gap: 8px;
|
|
justify-content: space-between;
|
|
}
|
|
.list-form-footer button[type='submit'] {
|
|
padding-inline: 24px;
|
|
}
|
|
|
|
#list-manage-members-container ul {
|
|
display: block;
|
|
list-style: none;
|
|
padding: 8px 0;
|
|
margin: 0;
|
|
}
|
|
#list-manage-members-container ul li {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 8px 0;
|
|
}
|