Add dashboard pressure trend arrow

This commit is contained in:
2019-10-06 19:59:13 -04:00
parent d593c0095f
commit 7c062dbc04
13 changed files with 148 additions and 7 deletions

View File

@@ -0,0 +1,22 @@
#pressure-arrow {
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(3);
}
.down-high {
transform: translate(-50%, -50%) scale(3) rotate(60deg) !important;
}
.down-low {
transform: translate(-50%, -50%) scale(3) rotate(25deg) !important;
}
.up-high {
transform: translate(-50%, -50%) scale(3) rotate(-60deg) !important;
}
.up-low {
transform: translate(-50%, -50%) scale(3) rotate(-25deg) !important;
}