fix(style): center align desktop modal properly

This commit is contained in:
sokumon 2025-10-29 18:28:51 +05:30
parent 723122fed7
commit 365a85ab2f

View file

@ -141,8 +141,10 @@
width: var(--desktop-modal-width); width: var(--desktop-modal-width);
height: var(--desktop-modal-height); height: var(--desktop-modal-height);
padding: 0px !important; padding: 0px !important;
padding-top: 23px !important; display: flex;
padding-bottom: 23px !important; justify-content: center;
align-items: center;
flex-direction: column;
& .icons{ & .icons{
gap: 0px 0px; gap: 0px 0px;
} }
@ -182,7 +184,12 @@
& .desktop-icon{ & .desktop-icon{
height: 127px; height: 127px;
width: 126px; width: 126px;
padding: 13px 16px 13px 16px; & .icon-caption {
width: 80%;
overflow: hidden;
text-overflow: ellipsis;
text-wrap: wrap;
}
} }
} }
.desktop-context-menu{ .desktop-context-menu{