3.0 Beta 5

This commit is contained in:
2026-04-13 15:14:24 +02:00
parent c56b0aab8a
commit 931ac91526
16 changed files with 151 additions and 32 deletions

View File

@@ -31,7 +31,7 @@ main {
}
}
main {
#albumList {
display: flex;
gap: 10px;
flex-wrap: wrap;
@@ -45,6 +45,7 @@ main {
border-radius: 30px;
overflow: hidden;
position: relative;
cursor: pointer;
.album-name {
position: absolute;
@@ -66,4 +67,19 @@ main {
}
}
}
#pictureList {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-content: flex-start;
overflow-y: scroll;
oimg {
background: var(--tui-background-base-alt);
height: 200px;
border-radius: 25px;
cursor: pointer;
}
}
}