This commit is contained in:
wrzesinski-hubert 2021-01-17 22:24:44 +01:00
parent 31a85db790
commit 429c58befb
2 changed files with 3 additions and 7 deletions

View File

@ -213,7 +213,7 @@ export default function ({ handleTransfer }: TopbarProps) {
<SelectedStudent>{selectedStudent?.email.replace(/@st.amu.edu.pl/, '')}</SelectedStudent>
{/* <Text>Maciej Głowacki</Text> */}
{/* <Icon alt="transfer" src={Transfer} onClick={handleTransfer} /> */}
<Icon alt="transfer" src={ProfileIcon} onClick={handleTransfer} />
{/* <Icon alt="change_language" src={isPolish ? EnglishIcon : PolishIcon} onClick={onLangChange} /> */}
<Icon alt="profile" src={ProfileIcon} onClick={handleProfile} />
<Profile anchorEl={anchorEl} handleClose={handleCloseProfile} />

View File

@ -21,19 +21,15 @@ const useStyles = makeStyles({
const TransferStyled = styled.div`
display: flex;
flex-direction: row;
outline: none;
min-width: 35%;
height: 70%;
padding-top: 40px;
background: #006b96;
background: white;
box-shadow: 0px 0px 0px 4px #006b96;
border: 4px solid #ffc400;
margin: 0 auto;
border-top-left-radius: 5px;
border-bottom-right-radius: 5px;
border-radius: 5px;
text-transform: uppercase;
letter-spacing: 0.3ch;
`;