23 lines
339 B
SCSS
23 lines
339 B
SCSS
@import '../../scss/variables.scss';
|
|
|
|
.pli {
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
background: $dark3;
|
|
border: 1px solid $dark1;
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 300px;
|
|
word-break: break-word;
|
|
|
|
& + & {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
&__img {
|
|
max-width: 50px;
|
|
max-height: 50px;
|
|
padding-right: 10px;
|
|
}
|
|
}
|