Fixed S3 missing from actor avatar queries. Improved stash button alignment.
This commit is contained in:
parent
74afc55dc6
commit
757d554e7b
|
@ -827,6 +827,10 @@ export default {
|
|||
.expand {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.actor-stash {
|
||||
margin: 0 .5rem 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media(max-width: $breakpoint0) {
|
||||
|
|
|
@ -73,8 +73,14 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.stash-container.light .icon {
|
||||
fill: var(--lighten);
|
||||
@import 'breakpoints';
|
||||
|
||||
.stash-container {
|
||||
flex-shrink: 0;
|
||||
|
||||
&.light .icon {
|
||||
fill: var(--lighten);
|
||||
}
|
||||
}
|
||||
|
||||
.stash.icon {
|
||||
|
@ -96,4 +102,11 @@ export default {
|
|||
.stash-trigger {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
@media(max-width: $breakpoint) {
|
||||
.stash.icon {
|
||||
width: 1.25rem;
|
||||
height: 1.25rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -48,6 +48,9 @@ function initStashesActions(store, _router) {
|
|||
path
|
||||
thumbnail
|
||||
lazy
|
||||
isS3
|
||||
width
|
||||
height
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -130,6 +130,9 @@ function initUiActions(_store, _router) {
|
|||
path
|
||||
thumbnail
|
||||
lazy
|
||||
isS3
|
||||
width
|
||||
height
|
||||
comment
|
||||
credit
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue