new architecture for member list yeah

This commit is contained in:
Gaëlle Morin
2019-10-21 15:02:12 +02:00
parent 6d4b863e3b
commit afa5fa0451
2 changed files with 26 additions and 10 deletions

View File

@ -1,4 +1,4 @@
.table {
.table-header {
background: $color-228-25-79;
color: white;
display: flex;
@ -19,24 +19,34 @@
}
}
circle-team-template {
.table-body>div {
display: flex;
justify-content: space-between;
>* {
flex: 1;
width: 50%;
padding: 1rem;
border-right: 1px solid $color-228-25-79;
border-bottom: 1px solid $color-228-25-79;
}
>*:nth-child(even) {
/*>*:nth-child(even) {
display: flex;
}*/
/*>*:nth-child(odd) {
border-left: 1px solid $color-228-25-79;
}*/
circle-team-template {
display: block;
border-bottom: 1px solid $color-228-25-79;
border-left: 1px solid $color-228-25-79;
}
>*:nth-child(odd) {
circle-delete-template {
display: block;
border-bottom: 1px solid $color-228-25-79;
border-left: 1px solid $color-228-25-79;
border-right: 1px solid $color-228-25-79;
}
}