Fix mobile unread notifications indicator

This commit is contained in:
Toby Zerner 2015-07-28 17:41:36 +09:30
parent c5c41832b3
commit 8194de1df6
2 changed files with 17 additions and 17 deletions

View File

@ -114,20 +114,3 @@
font-weight: bold;
}
}
.Navigation-drawer.unreadNotifications {
position: relative;
&:after {
content: ' ';
display: block;
position: absolute;
background: @primary-color;
top: 10px;
right: 10px;
width: 14px;
height: 14px;
border-radius: 7px;
border: 2px solid @body-bg;
}
}

View File

@ -28,3 +28,20 @@
.rotate(0deg);
}
}
.Navigation-drawer.unread {
position: relative;
&:after {
content: ' ';
display: block;
position: absolute;
background: @primary-color;
top: 10px;
right: 10px;
width: 14px;
height: 14px;
border-radius: 7px;
border: 2px solid @body-bg;
}
}