Generateurv2/frontend/styles/pdf_gen/paramItem.module.scss

43 lines
581 B
SCSS
Raw Normal View History

2022-05-18 10:15:54 +02:00
@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;
}