feat: add template for circle admin page

This commit is contained in:
Christophe Henry
2019-10-28 12:08:22 +01:00
parent fc7732b1b9
commit 5eb9b6aad8
7 changed files with 80 additions and 56 deletions

View File

@ -1,2 +1,3 @@
@import 'circle-profile';
@import 'circle-edit';
@import 'circle-edit';
@import 'circle-admin';

View File

@ -0,0 +1,3 @@
.circle-admin-join-button select[name='user'] {
display: none;
}

View File

@ -13,11 +13,22 @@ h2 {
justify-content: space-around;
text-align: center;
>*{
border-right: 1px solid $color-228-25-79;
.cell {
border-bottom: none;
border-top: none;
flex: 1;
padding: 1rem;
width: 50%;
&:not(:last-child) {
border-left: none;
border-right: 1px solid white;
}
&:not(:last-child) {
border-left: 1px solid white;
border-right: none;
}
}
>*:last-of-type {