refactor(nui): Style adjustments

This commit is contained in:
Luke
2022-03-19 12:57:49 +01:00
parent 65056114ba
commit 97be95fe35
4 changed files with 30 additions and 15 deletions

View File

@@ -19,7 +19,7 @@ debugData([
{
action: "progress",
data: {
label: "Using lockpick",
label: "Using Lockpick",
duration: 8000,
},
},
@@ -66,8 +66,8 @@ const Progressbar: React.FC = () => {
<ScaleFade in={visible} unmountOnExit>
<Progress
value={100}
backgroundColor="rgba(0, 0, 0, 0.6)"
height="3rem"
height="2.8rem"
fontFamily="Inter"
flex="1 1 auto"
onAnimationEnd={progressComplete}
sx={
@@ -86,7 +86,7 @@ const Progressbar: React.FC = () => {
}
}
>
<ProgressLabel fontSize={22}>{label}</ProgressLabel>
<ProgressLabel fontSize={20}>{label}</ProgressLabel>
</Progress>
</ScaleFade>
</Box>