Update IssuesList layout (#2317)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov
2022-10-24 17:26:56 +07:00
committed by GitHub
parent bcceb8b5b4
commit 5568eeba3c
28 changed files with 321 additions and 137 deletions
@@ -82,8 +82,7 @@
}
})
let twoRows: boolean
$: twoRows = $deviceInfo.docWidth <= 768
$: twoRows = $deviceInfo.twoRows
</script>
<div class="ac-header withSettings" class:full={!twoRows} class:mini={twoRows}>
@@ -75,8 +75,7 @@
return search === '' ? baseQuery : { ...baseQuery, $search: search }
}
let twoRows: boolean
$: twoRows = $deviceInfo.docWidth <= 680
$: twoRows = $deviceInfo.twoRows
</script>
<div class="ac-header withSettings" class:full={!twoRows} class:mini={twoRows}>
@@ -38,7 +38,8 @@
showPopup,
TooltipInstance,
PopupPosAlignment,
checkMobile
checkMobile,
deviceOptionsStore as deviceInfo
} from '@hcengineering/ui'
import view from '@hcengineering/view'
import { ActionContext, ActionHandler } from '@hcengineering/view-resources'
@@ -53,7 +54,6 @@
import NavHeader from './NavHeader.svelte'
import Navigator from './Navigator.svelte'
import SpaceView from './SpaceView.svelte'
import { deviceOptionsStore as deviceInfo } from '@hcengineering/ui'
export let client: Client
let contentPanel: HTMLElement