Fixed new label positioning.

This commit is contained in:
DebaucheryLibrarian 2021-01-19 16:33:35 +01:00
parent c329ffdf07
commit 0663109634
1 changed files with 7 additions and 1 deletions

View File

@ -169,7 +169,7 @@ export default {
height: 100%; height: 100%;
box-shadow: 0 0 3px var(--darken-weak); box-shadow: 0 0 3px var(--darken-weak);
&.new::after { &.new .poster::after {
content: '★'; content: '★';
position: absolute; position: absolute;
top: 0; top: 0;
@ -366,5 +366,11 @@ export default {
.shoot { .shoot {
display: none; display: none;
} }
&.new .poster::after {
bottom: 0;
top: auto;
border-radius: 0 .5rem 0 0;
}
} }
</style> </style>