43 lines
581 B
SCSS
43 lines
581 B
SCSS
@import '../variables';
|
|
|
|
.name-container{
|
|
display: flex;
|
|
align-items: center;
|
|
width: 50%;
|
|
& > p {
|
|
margin: 0;
|
|
|
|
}
|
|
& > svg{
|
|
width: 15%;
|
|
height: 15%;
|
|
opacity: 0;
|
|
transition: .3s;
|
|
cursor: pointer;
|
|
}
|
|
&:hover > svg{
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
|
|
.param-container{
|
|
& > input{
|
|
width: 50px;
|
|
background-color: rgba(white, .8);
|
|
}
|
|
|
|
& > label{
|
|
font-size: .8em;
|
|
}
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.item{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 3%;
|
|
padding: 2%;
|
|
border-bottom: 1px solid $background;
|
|
} |