BetterSessions: fix ui

This commit is contained in:
Vendicated 2025-08-01 01:51:29 +02:00
parent cb36cf5706
commit fa672a347d
No known key found for this signature in database
GPG key ID: D66986BAF75ECF18

View file

@ -92,7 +92,7 @@ export default definePlugin({
<span>{title}</span> <span>{title}</span>
{(savedSession == null || savedSession.isNew) && ( {(savedSession == null || savedSession.isNew) && (
<div <div
className="vc-plugins-badge" className="vc-addon-badge"
style={{ style={{
backgroundColor: "#ED4245", backgroundColor: "#ED4245",
marginLeft: "2px" marginLeft: "2px"
@ -123,6 +123,7 @@ export default definePlugin({
return ( return (
<BlobMask <BlobMask
isFolder
style={{ cursor: "unset" }} style={{ cursor: "unset" }}
selected={false} selected={false}
lowerBadge={ lowerBadge={
@ -153,7 +154,7 @@ export default definePlugin({
className={SessionIconClasses.sessionIcon} className={SessionIconClasses.sessionIcon}
style={{ backgroundColor: GetOsColor(session.client_info.os) }} style={{ backgroundColor: GetOsColor(session.client_info.os) }}
> >
<DeviceIcon width={28} height={28} color="currentColor" /> <DeviceIcon size="md" color="currentColor" />
</div> </div>
</BlobMask> </BlobMask>
); );