24 lines
367 B
SCSS
24 lines
367 B
SCSS
@import '~open-color/open-color.scss';
|
|
|
|
.pli {
|
|
padding: 20px;
|
|
border-radius: 4px;
|
|
background: $oc-gray-3;
|
|
border-color: $oc-gray-5;
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 300px;
|
|
word-break: break-word;
|
|
|
|
& + & {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
&__img {
|
|
max-width: 100px;
|
|
max-height: 50px;
|
|
padding-right: 20px;
|
|
cursor: pointer;
|
|
}
|
|
}
|