This commit is contained in:
Gaëlle Morin 2019-10-18 10:26:08 +02:00
parent 4d2566abe0
commit ba6e21a71c
2 changed files with 12 additions and 55 deletions

View File

@ -1,73 +1,26 @@
/*.table {
display: table;
width: 100%;
.row.header {
display: table-row;
.cell {
display: table-cell;
&.un {
background: pink;
}
&.deux {
background: paleturquoise;
}
}
}
}
[widget='circle-team-template'] {
>div {
display: table;
width: 100%;
>circle-team-template {
display: table-row;
>* {
border-bottom: 1px solid $color-228-25-79;
border-left: 1px solid $color-228-25-79;
}
>sib-display {
display: table-cell;
div {
display: flex;
background: bisque;
}
}
sib-delete {
border-right: 1px solid $color-228-25-79;
display: table-cell;
}
}
}
}*/
.table { .table {
background: $color-228-25-79;
color: white;
display: flex; display: flex;
justify-content: space-around; justify-content: space-around;
background: pink; font-weight: 600;
font-size: 1.6rem;
>*{ >*{
flex: 1; flex: 1;
width: 50%; width: 50%;
padding: 1rem; padding: 1rem;
border-right: 1px solid $color-228-25-79; border-right: 1px solid $color-228-25-79;
border-bottom: 1px solid $color-228-25-79; }
>*:first-of-type {
border-right: 1px solid white;
} }
} }
circle-team-template { circle-team-template {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
background: paleturquoise;
>* { >* {
flex: 1; flex: 1;
@ -76,4 +29,8 @@ circle-team-template {
border-right: 1px solid $color-228-25-79; border-right: 1px solid $color-228-25-79;
border-bottom: 1px solid $color-228-25-79; border-bottom: 1px solid $color-228-25-79;
} }
>*:nth-child(odd) {
border-left: 1px solid $color-228-25-79;
}
} }

View File