summaryrefslogtreecommitdiffstats
path: root/web/sass-files
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-12-16 09:30:46 -0500
committerhmhealey <harrisonmhealey@gmail.com>2015-12-16 09:55:00 -0500
commitb4eb83d66ff3304653bfc80a1b2f4982351eae73 (patch)
tree13bc0da13f3acd3f388812ef044cf4f50d9d01da /web/sass-files
parentc7fb1f7fe94cd018daa7de2b85a2246eaff9f111 (diff)
downloadchat-b4eb83d66ff3304653bfc80a1b2f4982351eae73.tar.gz
chat-b4eb83d66ff3304653bfc80a1b2f4982351eae73.tar.bz2
chat-b4eb83d66ff3304653bfc80a1b2f4982351eae73.zip
Added scroll to bottom arrows for mobile
Diffstat (limited to 'web/sass-files')
-rw-r--r--web/sass-files/sass/partials/_post.scss18
1 files changed, 18 insertions, 0 deletions
diff --git a/web/sass-files/sass/partials/_post.scss b/web/sass-files/sass/partials/_post.scss
index 88842c973..2f6540a4e 100644
--- a/web/sass-files/sass/partials/_post.scss
+++ b/web/sass-files/sass/partials/_post.scss
@@ -274,6 +274,24 @@ body.ios {
}
}
+.post-list__arrows {
+ background: url('../images/postArrows.png') center;
+ @include background-size(28px 28px);
+ background-repeat: no-repeat;
+ width: 40px;
+ height: 40px;
+ position: absolute;
+ bottom: 50px;
+ right: 5px;
+ z-index: 50;
+ @include opacity(0);
+ @include single-transition(all, 0.3s);
+
+ &.scrolling {
+ @include opacity(1);
+ }
+}
+
.post-create__container {
form {
width: 100%;