mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-01 18:53:16 +00:00
Add needed classes to status view
This commit is contained in:
parent
33ab1c987a
commit
78fe6758c9
1 changed files with 22 additions and 4 deletions
24
resources/assets/sass/custom.scss
vendored
24
resources/assets/sass/custom.scss
vendored
|
@ -59,9 +59,12 @@ body, button, input, textarea {
|
||||||
margin: auto !important;
|
margin: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card.status-container .status-comments {
|
@media (min-width: map-get($grid-breakpoints, "md")) {
|
||||||
overflow-y: scroll;
|
.card.status-container .status-comments {
|
||||||
border-bottom:1px solid rgba(0, 0, 0, 0.1);
|
overflow-y:scroll;
|
||||||
|
border-bottom:1px solid rgba(0,0,0,.1);
|
||||||
|
height: 200px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.no-caret.dropdown-toggle {
|
.no-caret.dropdown-toggle {
|
||||||
|
@ -166,3 +169,18 @@ body, button, input, textarea {
|
||||||
|
|
||||||
.fas.fa-heart {
|
.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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue