feat: adding same sx to buttons on monitors

This commit is contained in:
Caio Cabral
2024-12-11 21:18:09 -05:00
parent 8bf254ee49
commit 5910bdb9c5
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ function Infrastructure() {
variant="contained"
color="primary"
onClick={navigateToCreate}
sx={{ whiteSpace: "nowrap" }}
sx={{ fontWeight: 500, whiteSpace: "nowrap" }}
>
Create new
</Button>
+1 -1
View File
@@ -61,7 +61,7 @@ const Monitors = ({ isAdmin }) => {
onClick={() => {
navigate("/monitors/create");
}}
sx={{ fontWeight: 500 }}
sx={{ fontWeight: 500, whiteSpace: "nowrap" }}
>
Create monitor
</Button>
+1 -1
View File
@@ -92,7 +92,7 @@ const PageSpeed = ({ isAdmin }) => {
variant="contained"
color="primary"
onClick={() => navigate("/pagespeed/create")}
sx={{ whiteSpace: "nowrap" }}
sx={{ fontWeight: 500, whiteSpace: "nowrap" }}
>
Create new
</Button>