delete button ok

This commit is contained in:
Gaëlle Morin 2019-10-21 13:12:04 +02:00
parent 795bdb11e8
commit 6d4b863e3b
3 changed files with 28 additions and 1 deletions

View File

@ -13,6 +13,8 @@
sib-delete(
data-src="${await value['@id']}"
data-label='Delete from circle'
resourceDeleted=''
)
h1 Edit your circle

View File

@ -105,6 +105,26 @@ a {
}
}
sib-delete {
button {
@include icon('close');
background-color: $color-233-18-29;
border: none;
border-radius: 100em;
color: $color-0-0-100;
cursor: pointer;
font-size: 1.4rem;
font-weight: bold;
padding: 0.55rem 2.5rem;
text-transform: uppercase;
&::before {
margin-right: 1rem;
}
}
}
%padding-main {
padding: 5rem;
}

View File

@ -3,8 +3,9 @@
color: white;
display: flex;
justify-content: space-around;
font-weight: 600;
font-size: 1.6rem;
font-weight: 600;
text-align: center;
>*{
flex: 1;
@ -30,6 +31,10 @@ circle-team-template {
border-bottom: 1px solid $color-228-25-79;
}
>*:nth-child(even) {
display: flex;
}
>*:nth-child(odd) {
border-left: 1px solid $color-228-25-79;
}