1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

boris notificatins

This commit is contained in:
Fedor Katurov 2020-04-14 12:40:16 +07:00
parent bfa61d3987
commit abcdcfa09f
6 changed files with 75 additions and 20 deletions

View file

@ -90,6 +90,26 @@
transition: transform 0.5s, opacity 0.25s;
}
&::after {
content: ' ';
position: absolute;
width: 8px;
height: 8px;
border-radius: 4px;
background: $red;
left: 50%;
bottom: -2px;
transform: translate(-50%, 0);
transition: opacity 0.5s;
opacity: 0;
}
&.has_dot {
&::after {
opacity: 1;
}
}
@include tablet {
padding: $gap;