back-end done
This commit is contained in:
@@ -752,3 +752,41 @@ section {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.filters {
|
||||
margin: 0 auto 50px;
|
||||
|
||||
ul {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
|
||||
li {
|
||||
margin: 10px 20px;
|
||||
color: rgba(#000, 0.5);
|
||||
cursor: pointer;
|
||||
@extend %userSelect;
|
||||
|
||||
p {
|
||||
text-align: center;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
display: block;
|
||||
height: 2px;
|
||||
width: 0;
|
||||
background: $red;
|
||||
margin: 0 auto;
|
||||
@include transition(0.1s);
|
||||
}
|
||||
|
||||
&.active {
|
||||
&::after {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user