From 257337c6cfff35bd1ecd37e49321d401d9cc5fc9 Mon Sep 17 00:00:00 2001 From: Francesco <fmazzini@unibz.it> Date: Mon, 21 Jun 2021 22:01:41 +0200 Subject: [PATCH] Adjust ChoseRole not finished THO --- .../Auth/ChoseRole/ChoseRoleStyle.style.ts | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/components/Auth/ChoseRole/ChoseRoleStyle.style.ts diff --git a/src/components/Auth/ChoseRole/ChoseRoleStyle.style.ts b/src/components/Auth/ChoseRole/ChoseRoleStyle.style.ts new file mode 100644 index 0000000..de104e3 --- /dev/null +++ b/src/components/Auth/ChoseRole/ChoseRoleStyle.style.ts @@ -0,0 +1,65 @@ +import { makeStyles } from '@material-ui/core/styles'; + +export const choseRoleStyle = makeStyles(() => ({ + root: { + minHeight: '36vh', + backgroundImage: `url(${'/assets/bgMED.svg'})`, + backgroundRepeat: 'no-repeat', + backgroundSize: 'cover', + }, + rightAlign: { + marginLeft: 'auto', + }, + whiteText: { + color: 'white', + }, + imageIcon: { + maxHeight: '50%', + }, + paddingBottom: { + paddingBottom: '65px', + }, + paddingBottomKlein: { + paddingBottom: '15px', + }, + paddingTop: { + paddingTop: '65px', + }, + paddingTopKlein: { + paddingTop: '35px', + }, + 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.9em', + bottom: '0', + right: '0', + position: 'fixed', + fontSize: '2em', + padding: '1.5em', + }, + fabSmall: { + margin: '1.4em', + bottom: '0', + right: '0', + position: 'fixed', + fontSize: '1.7em', + padding: '1.4em', + }, +})); -- GitLab