Fixed a bunch of border.width who used to have inverted logic (math.min vs max)

This commit is contained in:
quadbyte 2025-08-10 23:52:31 -04:00
parent ff2bbe60a4
commit c7a07127d8
11 changed files with 15 additions and 17 deletions

View file

@ -19,7 +19,7 @@ NLoader {
color: Colors.backgroundSecondary
radius: Style.radiusMedium * scaling
border.color: Colors.backgroundTertiary
border.width: Math.min(1, Style.borderMedium * scaling)
border.width: Math.max(1, Style.borderMedium * scaling)
width: 340 * scaling
height: 320 // TBC
anchors.top: parent.top