mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-02-17 02:05:13 +00:00
Fix supporter badge for rounded avatar
This commit is contained in:
parent
f00f843a77
commit
ab06c0ab17
1 changed files with 2 additions and 1 deletions
|
@ -101,7 +101,8 @@ struct AccountDetailHeaderView: View {
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 25, height: 25)
|
.frame(width: 25, height: 25)
|
||||||
.foregroundColor(theme.tintColor)
|
.foregroundColor(theme.tintColor)
|
||||||
.offset(x: 10, y: -10)
|
.offset(x: theme.avatarShape == .circle ? 0 : 10,
|
||||||
|
y: theme.avatarShape == .circle ? 0 : -10)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Spacer()
|
Spacer()
|
||||||
|
|
Loading…
Reference in a new issue