Skip to content

Commit

Permalink
Fix invisible images in light mode (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
pinehappi authored Nov 19, 2024
1 parent 570b421 commit a38fddd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/App/Components/Collapsible.luau
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ return function(props: Props): Frame
Position = UDim2.fromScale(1, 0.5),
Size = UDim2.fromOffset(16, 16),
Image = Assets.Icons.Expand,
ImageColor3 = Theme.Colors.Text,
Rotation = Spring(
Computed(function(use)
return use(isExpanded) and 180 or 0
Expand Down
1 change: 1 addition & 0 deletions src/App/Components/Spinner.luau
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ return function(props: Props): ImageLabel
return Hydrate(Image {
Size = UDim2.fromOffset(Theme.CompSizeY.Medium, Theme.CompSizeY.Medium),
Image = Assets.Icons.Spinner,
ImageColor3 = Theme.Colors.Text,
Rotation = Tween(
rotation,
TweenInfo.new(props.Duration or 1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, -1)
Expand Down

0 comments on commit a38fddd

Please sign in to comment.