Procedure Index: add notification icon

This commit is contained in:
Simon Lehericey 2017-08-30 11:12:58 +02:00 committed by Mathieu Magnin
parent ff3120bf6c
commit 3e93d21bf5
6 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,9 @@
@import "colors";
span.notifications {
position: absolute;
width: 8px;
height: 8px;
border-radius: 4px;
background-color: $orange;
}

View file

@ -40,6 +40,7 @@
min-height: 36px;
border-left: 1px solid $border-grey;
width: 90px;
position: relative;
&:last-child {
border-right: 1px solid $border-grey;
@ -60,5 +61,10 @@
color: $grey;
}
}
.notifications {
top: 3px;
right: 18px;
}
}
}