hubl/src/styles/layout/circle-profile/circle-edit.scss

79 lines
1.2 KiB
SCSS
Raw Normal View History

2019-10-17 14:06:22 +00:00
/*.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 {
display: flex;
justify-content: space-around;
background: pink;
>*{
flex: 1;
width: 50%;
padding: 1rem;
border-right: 1px solid $color-228-25-79;
border-bottom: 1px solid $color-228-25-79;
}
}
circle-team-template {
display: flex;
justify-content: space-between;
background: paleturquoise;
>* {
flex: 1;
width: 50%;
padding: 1rem;
border-right: 1px solid $color-228-25-79;
border-bottom: 1px solid $color-228-25-79;
}
}