Generateurv2/frontend/styles/pdf_gen/paramItem.module.scss
2022-06-24 13:42:16 +02:00

44 lines
607 B
SCSS

@import '../variables';
.name-container{
display: flex;
align-items: center;
width: 50%;
& > p {
margin: 0;
}
& > svg{
width: 10px;
height: 10px;
margin-right: 10px;
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;
}