Merge branch 'develop' of codeberg.org:thatonecalculator/calckey into develop

This commit is contained in:
ThatOneCalculator 2022-09-17 16:55:56 -07:00
commit c2fc10307d
3 changed files with 4 additions and 4 deletions

View file

@ -115,7 +115,7 @@ onMounted(() => {
&::after {
content: "";
background-image: inherit;
background-image: var(--blur, inherit);
position: fixed;
inset: 0;
background-size: cover;

View file

@ -116,11 +116,11 @@ const MOBILE_THRESHOLD = 500;
// UI deviceKind === 'desktop'
const isMobile = ref(
deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD
deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD,
);
window.addEventListener('resize', () => {
isMobile.value =
deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD;
(deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD);
});
const tlComponent = $ref<InstanceType<typeof XTimeline>>();

View file

@ -221,7 +221,7 @@ onUnmounted(() => {
&::after {
content: "";
background-image: inherit;
background-image: var(--blur, inherit);
position: fixed;
inset: 0;
background-size: cover;