1
0
Fork 0

Add needed classes to status view

This commit is contained in:
Stasiek Michalski 2018-06-05 00:04:56 +02:00 committed by GitHub
parent 33ab1c987a
commit 78fe6758c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 4 deletions

View File

@ -59,9 +59,12 @@ body, button, input, textarea {
margin: auto !important;
}
.card.status-container .status-comments {
overflow-y: scroll;
border-bottom:1px solid rgba(0, 0, 0, 0.1);
@media (min-width: map-get($grid-breakpoints, "md")) {
.card.status-container .status-comments {
overflow-y:scroll;
border-bottom:1px solid rgba(0,0,0,.1);
height: 200px;
}
}
.no-caret.dropdown-toggle {
@ -165,4 +168,19 @@ body, button, input, textarea {
}
.fas.fa-heart {
}
}
@media (max-width: map-get($grid-breakpoints, "md")) {
.border-md-left-0 {
border-left:0!important
}
.card.status-container .status-comments {
border-top:1px solid rgba(0,0,0,.1);
}
.sticky-md-bottom {
position:-webkit-sticky;
position:sticky;
bottom:0;
z-index:1020
}
}