From ad81872850208f0ccb078c3359ad3d0df67dce53 Mon Sep 17 00:00:00 2001 From: Alberto Defendi <1369-ahl-berto@users.noreply.gitlab.inf.unibz.it> Date: Sun, 30 May 2021 10:29:22 +0200 Subject: [PATCH] Move ReservationPage styles here. --- .../ReservationPage/ReservationPage.style.ts | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/components/Dashboard/ReservationPage/ReservationPage.style.ts diff --git a/src/components/Dashboard/ReservationPage/ReservationPage.style.ts b/src/components/Dashboard/ReservationPage/ReservationPage.style.ts new file mode 100644 index 0000000..c3d2fca --- /dev/null +++ b/src/components/Dashboard/ReservationPage/ReservationPage.style.ts @@ -0,0 +1,51 @@ +import { makeStyles } from '@material-ui/core/styles'; + +export const useStyles = makeStyles(() => ({ + root: { + minHeight: '36vh', + backgroundImage: `url(${'/assets/bg7.png'})`, + backgroundRepeat: 'no-repeat', + backgroundSize: 'cover', + }, + rightAlign: { + marginLeft: 'auto', + }, + whiteText: { + color: 'white', + }, + imageIcon: { + maxHeight: '50%', + }, + paddingBottom: { + paddingBottom: '65px', + }, + paddingTop: { + paddingTop: '65px', + }, + bodyIcon: { + fontSize: '90px', + paddingBottom: '10px', + paddingTop: '10px', + }, + contIcon: { + width: '100%', + left: '0', + right: '0', + }, + noShadow: { + border: 'none', + boxShadow: 'none', + backgroundColor: 'transparent', + }, + extendedIcon: { + fontSize: '50px', + }, + fab: { + margin: '1.5em', + bottom: '0', + right: '0', + position: 'fixed', + fontSize: '2em', + padding: '1.5em', + }, +})); -- GitLab