Adds multiple edition

This commit is contained in:
alonso.torres 2020-10-01 11:59:36 +02:00 committed by Hirunatan
parent c28fce58f1
commit 5f650832e6
5 changed files with 104 additions and 102 deletions

View file

@ -992,3 +992,39 @@
}
}
}
.multiple-typography {
margin: 0.5rem;
padding: 0.5rem;
border: 1px dashed $color-gray-30;
border-radius: 4px;
display: flex;
justify-content: space-between;
.multiple-typography-text,
.multiple-typography-button {
font-size: $fs13;
display: flex;
align-items: center;
}
.multiple-typography-button {
cursor: pointer;
svg {
transition: fill 0.3s;
width: 16px;
height: 16px;
fill: $color-gray-10;
}
&:hover svg {
fill: $color-primary;
}
}
svg {
}
.multiple-typography-button:hover svg {
}
}