Skip to content

Commit

Permalink
Fixed Hamburger Menu Icon on Mobile UI
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunroselt committed Mar 17, 2024
1 parent 2ddff4f commit cf81264
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Pages/uSettings.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ object Frame_Settings: TFrame_Settings
Margins.Right = 0
Margins.Bottom = 0
Align = alClient
Caption = 'Version 1.0.2 | WEB | RELEASE | 2024/03/09'
Caption = 'Version 1.0.3 | WEB | RELEASE | 2024/03/17'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -14
Expand Down
2 changes: 1 addition & 1 deletion TMSWeb/Release/HaloTracker_Web.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions uIndex.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ object frmMain: TfrmMain
Width = 44
Height = 44
Cursor = crHandPoint
Hint = 'View Change Log'
Margins.Left = 13
Margins.Top = 13
Margins.Right = 0
Expand All @@ -192,7 +191,7 @@ object frmMain: TfrmMain
Font.Style = []
HeightPercent = 100.000000000000000000
ParentFont = False
ShowHint = True
ShowHint = False
WidthPercent = 100.000000000000000000
OnClick = btnMultiViewClick
OnMouseEnter = ButtonMouseEnter
Expand Down
3 changes: 2 additions & 1 deletion uIndex.pas
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,6 @@ procedure TfrmMain.WebFormCreate(Sender: TObject);

btnMultiView.ElementHandle.style.setProperty('border-radius', '5px');
btnMultiView.ElementHandle.style.setProperty('border-width', '0');
btnMultiView.ElementHandle.innerHTML := '<img src="assets/list.svg" style="display: block; margin-left: auto; margin-right: auto; width: 75%;" />';


// GetAchievements.Execute(
Expand Down Expand Up @@ -470,6 +469,8 @@ procedure TfrmMain.WebFormResize(Sender: TObject);
btnMultiView.Visible := True;
end;
end;

btnMultiView.ElementHandle.innerHTML := '<img src="assets/list.svg" style="display: block; margin-left: auto; margin-right: auto; width: 75%;" />';
end;

procedure TfrmMain.WebFormShow(Sender: TObject);
Expand Down

0 comments on commit cf81264

Please sign in to comment.