diff --git a/frontend/src/features/about/system/AboutSystemComponent.js b/frontend/src/features/about/system/AboutSystemComponent.js index c22168a..5e6ebe0 100644 --- a/frontend/src/features/about/system/AboutSystemComponent.js +++ b/frontend/src/features/about/system/AboutSystemComponent.js @@ -1,6 +1,5 @@ import React from "react"; import PropTypes from "prop-types"; -import { makeStyles } from "@mui/material/styles"; import Card from "@mui/material/Card"; import CardActions from "@mui/material/CardActions"; import CardContent from "@mui/material/CardContent"; @@ -9,16 +8,16 @@ import Typography from "@mui/material/Typography"; import { useTranslation } from "react-i18next"; import OpenInNewIcon from "@mui/icons-material/OpenInNew"; -const useStyles = makeStyles(theme => ({ +const styles = { bullet: { display: "inline-block", margin: "0 4px", transform: "scale(1.5)" }, service: { - marginTop: theme.spacing(1) + marginTop: 1 } -})); +}; const buttons = [ { @@ -40,10 +39,9 @@ const buttons = [ ]; const AboutSystemComponent = ({ handleOpenInNewTab }) => { - const classes = useStyles(); const { t } = useTranslation(); - const bullet = ; + const bullet = ; return ( @@ -54,23 +52,23 @@ const AboutSystemComponent = ({ handleOpenInNewTab }) => { {t("About.System.Description.FirstPhrase")} {t("About.System.Description.SecondPhrase")} - + {bullet} {t("About.System.Description.Frontend")} - + {bullet} {t("About.System.Description.Api")} - + {bullet} {t("About.System.Description.Server")} - + {bullet} {t("About.System.Description.Agent")} - + {bullet} {t("About.System.Description.Tuitio")}