This commit is contained in:
wrzesinski-hubert 2020-12-14 15:52:32 +01:00
parent 54027d1980
commit 6258b40139
3 changed files with 15235 additions and 1 deletions

15226
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -13,6 +13,7 @@ const LeftSide = styled.div`
flex-direction: column; flex-direction: column;
background-color: white; background-color: white;
text-align: center; text-align: center;
border-radius:5px;
`; `;
const Wrap = styled.div` const Wrap = styled.div`
@ -42,8 +43,14 @@ const LeftPanelElement = styled.div<LeftPanelElement>`
//box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.75); //box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.75);
padding: 20px; padding: 20px;
cursor: pointer; cursor: pointer;
box-shadow: ${({ isCurrentTab }) => (isCurrentTab === true ? `inset 0px 0px 26px 0px rgba(0,0,0,0.55)` : '')}; box-shadow: ${({ isCurrentTab }) => (isCurrentTab === true ? `inset 0px 0px 11px 0px rgba(0,0,0,0.30)` : '')};
border-bottom: 1px solid #979797; border-bottom: 1px solid #979797;
:first-child{
border-radius:0px 5px 0px 0px;
}
:last-child{
border-radius:0px 0px 5px 0px;
}
`; `;
const HistoryDiv = styled.div` const HistoryDiv = styled.div`

View File

@ -77,6 +77,7 @@ const StyledSchedulerEvent = styled.div<SchedulerEventProps>`
`} `}
transition: background-color ease-out 0.4s; transition: background-color ease-out 0.4s;
box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.75); box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.75);
cursor:pointer;
`; `;
const threeStyles = () => { const threeStyles = () => {