fix: styles in time-entries
This commit is contained in:
parent
46e6f2f5ac
commit
f66f0d5e01
|
|
@ -39,8 +39,7 @@ const TimeElapsed = ({ startTime, endTime }: Props) => {
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
justifyContent: 'center',
|
justifyContent: 'center',
|
||||||
flexDirection: 'column',
|
flexDirection: 'column'
|
||||||
margin: '0 1rem'
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<pre
|
<pre
|
||||||
|
|
|
||||||
|
|
@ -312,14 +312,15 @@ export default function TimeEntriesPage() {
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'flex-end',
|
||||||
flexDirection: 'column',
|
flexDirection: 'column',
|
||||||
justifyContent: 'space-between',
|
justifyContent: 'space-between',
|
||||||
flexShrink: 1,
|
flexShrink: 1,
|
||||||
flexGrow: 0,
|
flexGrow: 0,
|
||||||
|
|
||||||
'@media (min-width: 601px)': {
|
'@media (min-width: 601px)': {
|
||||||
flexDirection: 'row'
|
flexDirection: 'row',
|
||||||
|
paddingLeft: '1rem'
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|
@ -331,8 +332,10 @@ export default function TimeEntriesPage() {
|
||||||
sx={{
|
sx={{
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
flexShrink: 0,
|
flexShrink: 0,
|
||||||
|
marginLeft: '1rem',
|
||||||
|
|
||||||
'@media (max-width: 600px)': {
|
'@media (max-width: 600px)': {
|
||||||
|
marginLeft: '0',
|
||||||
marginTop: '0.33rem'
|
marginTop: '0.33rem'
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue