45 lines
No EOL
859 B
SCSS
45 lines
No EOL
859 B
SCSS
.ajouter-un-album {
|
|
@include respond-to("small") {
|
|
display: block;
|
|
padding: 0 .75rem;
|
|
}
|
|
|
|
.list{
|
|
padding: 0.5rem 0.75rem;
|
|
border-bottom: 1px solid #dbdbdb;
|
|
|
|
&:nth-child(2n) {
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
.title {
|
|
font-weight: 800;
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.grid {
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
img {
|
|
border: 2px solid #4a4a4a;
|
|
}
|
|
|
|
.items {
|
|
span {
|
|
margin-right: 0.6rem;
|
|
|
|
&::after {
|
|
content: ",";
|
|
}
|
|
|
|
&:last-child {
|
|
&::after {
|
|
margin-right: 0;
|
|
content: "";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |