this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Push the limits of safe area

+8 -2
+4 -1
src/app.css
··· 1710 1710 bottom: calc(16px + env(safe-area-inset-bottom) + 52px); 1711 1711 1712 1712 body.exp-tab-bar-v2 & { 1713 - bottom: max(16px, var(--sai-bottom)); 1713 + bottom: max( 1714 + 16px, 1715 + min(var(--sai-left), var(--sai-right), var(--sai-bottom)) 1716 + ); 1714 1717 } 1715 1718 } 1716 1719 }
+4 -1
src/components/shortcuts.css
··· 85 85 --inset-block-end: max(16px, var(--sai-bottom)); 86 86 --compose-button-width: 56px; 87 87 inset-inline-start: var(--inset-inline-start); 88 - inset-block-end: max(16px, var(--sai-bottom)); 88 + inset-block-end: max( 89 + 16px, 90 + min(var(--sai-left), var(--sai-right), var(--sai-bottom)) 91 + ); 89 92 max-width: calc( 90 93 100vw - var(--inset-inline-start) - var(--inset-inline-end) - 91 94 var(--compose-button-width) - 8px