parent
e380f34c21
commit
6770faf4fe
@ -1,3 +1,7 @@
|
||||
.justify-content-space-between {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
@ -0,0 +1,67 @@
|
||||
.filter {
|
||||
&__tags {
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
margin: 1em 0 0;
|
||||
|
||||
.button {
|
||||
display: block;
|
||||
margin-right: 1em;
|
||||
|
||||
.icon {
|
||||
vertical-align: sub;
|
||||
margin: 0 -0.25em 0 0.25em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: '';
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top:0;
|
||||
z-index: 99;
|
||||
visibility: hidden;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #04040480;
|
||||
}
|
||||
|
||||
.button--close {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&__selected {
|
||||
.button {
|
||||
color: white;
|
||||
padding: 0.8em 1.2em;
|
||||
background: #878787;
|
||||
|
||||
.icon {
|
||||
fill: white;
|
||||
margin: 0 -0.25em 0 0.25em
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--open {
|
||||
&:after {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.filter__tags {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.button--close {
|
||||
display: inline-flex;
|
||||
z-index: 101;
|
||||
}
|
||||
|
||||
.button--open {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue