Added scene view toggle.

This commit is contained in:
2024-09-05 01:44:48 +02:00
parent 6458264abf
commit 77c6136a05
3 changed files with 158 additions and 74 deletions

View File

@@ -273,45 +273,47 @@ const favorited = ref(props.scene.stashes.some((sceneStash) => sceneStash.id ===
}
@media(--small-20) {
.tile-full {
flex-direction: row;
}
.tile.list {
.tile-full {
flex-direction: row;
}
.poster-container {
width: 10rem;
flex-shrink: 0;
}
.poster-container {
width: 10rem;
flex-shrink: 0;
}
.poster {
border-radius: .25rem 0 0 0;
}
.poster {
border-radius: .25rem 0 0 0;
}
.bookmarks.tiled {
right: auto;
left: 0;
}
.bookmarks.tiled {
right: auto;
left: 0;
}
.meta-full {
display: none;
}
.meta-full {
display: none;
}
.meta-compact {
display: flex;
}
.meta-compact {
display: flex;
}
.info {
width: 0;
flex-grow: 1;
justify-content: center;
}
.info {
width: 0;
flex-grow: 1;
justify-content: center;
}
.row {
margin: 0 .5rem .5rem .5rem;
}
.row {
margin: 0 .5rem .5rem .5rem;
}
.title {
margin-top: .6rem;
margin-bottom: .6rem;
.title {
margin-top: .6rem;
margin-bottom: .6rem;
}
}
}
</style>