This commit is contained in:
2025-03-18 18:55:05 +02:00
parent 1f6ee77c24
commit 610676cc0a
7 changed files with 54 additions and 22 deletions
+31 -3
View File
@@ -22,12 +22,40 @@ video{
.browse-asset {
position: absolute !important;
right: 22px;
bottom: 44px;
&.edit{
bottom: 77px;
left: 22px;
}
&.remove {
bottom: 44px;
right: 22px;
}
}
.asset-browser{
background-color: rgba(128,128,128,.05);
}
.img-preview {
display: flex;
flex-direction: column;
.img-wrapper{
flex-grow: 1;
overflow: hidden;
max-width: 270px !important;
display: flex;
align-items: center;
justify-content: center;
height:180px;
}
img{
display: block;
max-height:180px;
max-width: 95%;
transition: all 1s;
margin: auto;
&:hover{
max-width: 125%;
}
}
}