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

36 lines
617 B
SCSS
Raw Normal View History

2019-10-17 14:06:22 +00:00
.table {
2019-10-18 08:26:08 +00:00
background: $color-228-25-79;
color: white;
2019-10-17 14:06:22 +00:00
display: flex;
justify-content: space-around;
2019-10-18 08:26:08 +00:00
font-weight: 600;
font-size: 1.6rem;
2019-10-17 14:06:22 +00:00
>*{
flex: 1;
width: 50%;
padding: 1rem;
border-right: 1px solid $color-228-25-79;
2019-10-18 08:26:08 +00:00
}
>*:first-of-type {
border-right: 1px solid white;
2019-10-17 14:06:22 +00:00
}
}
circle-team-template {
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;
}
2019-10-18 08:26:08 +00:00
>*:nth-child(odd) {
border-left: 1px solid $color-228-25-79;
}
2019-10-17 14:06:22 +00:00
}