Skip to content

Commit

Permalink
🎨Code formatted in all files
Browse files Browse the repository at this point in the history
  • Loading branch information
Gellipapa authored and ESX GITHUB ACTIONS BOT committed Jul 23, 2023
1 parent 2af42d6 commit d1c8e36
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions client/vehicle/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@ local function SetSeatbeltState(state)
isSeatbeltOn = state
end

exports("SeatbeltState",function(...)
exports("SeatbeltState", function(...)
SetSeatbeltState(...)
end)



if not Config.Disable.Vehicle then
local inVehicle, vehicleType, playerPos = false, nil, nil
local currentMileage = 0
Expand Down
2 changes: 1 addition & 1 deletion shared/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Config = {
["speedo-outer-circle-color"] = "#242222",
["speedo-nooble-color"] = "#48a3cb",
["speedo-nooble-container"] = "#1f2937",
["speedo-seatbelt-icon-color"] = "#D22B2B"
["speedo-seatbelt-icon-color"] = "#D22B2B",
},
},
Disable = {
Expand Down
4 changes: 2 additions & 2 deletions web/DefaultDatas.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ const speedoDefaultColors = [
},
{
name: "speedo-seatbelt-icon-color",
color: "#D22B2B"
}
color: "#D22B2B",
},
];

const allColors = {
Expand Down
4 changes: 2 additions & 2 deletions web/src/assets/Components/Speedo.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
--speedo-nooble-color: #48a3cb;
--speedo-nooble-container: #1f2937;
--speedo-scale-size: 0.9;
--speedo-seatbelt-icon-color: #D22B2B;
--speedo-seatbelt-icon-color: #d22b2b;
}

/* SVG DONT'T TOUCH PLEASE THANK YOU */
Expand Down Expand Up @@ -163,7 +163,7 @@
fill: var(--fuel-icon-color);
}

.seatbeltIconColor{
.seatbeltIconColor {
fill: var(--speedo-seatbelt-icon-color);
}

Expand Down

0 comments on commit d1c8e36

Please sign in to comment.