Rotate unread notification bell icon with CSS instead of relying on a separate icon
This commit is contained in:
parent
e04a488ea4
commit
30973bd05f
3 changed files with 8 additions and 0 deletions
Binary file not shown.
Binary file not shown.
|
@ -4,11 +4,13 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
transition: 0.2s;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
// Apparently this won't skew the image as long as it has a viewbox
|
// Apparently this won't skew the image as long as it has a viewbox
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
transition: 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--active {
|
&--active {
|
||||||
|
@ -39,6 +41,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--unread {
|
||||||
|
svg.icon-tabler-bell {
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-button > div {
|
.icon-button > div {
|
||||||
|
|
Loading…
Reference in a new issue