diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-02-23 01:07:20 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-02-23 01:07:20 -0600 |
commit | e828f380e779b7c6c0b6cb45508ed59516c0feda (patch) | |
tree | 06a311ebb2d1a39ef4ea70fc2882b8e315938957 /src/view/shell/web/DesktopRightColumn.tsx | |
parent | c5f28376c86478b4c55d9f0910d8d0cb4a1feb06 (diff) | |
download | voidsky-e828f380e779b7c6c0b6cb45508ed59516c0feda.tar.zst |
Update web header and search
Diffstat (limited to 'src/view/shell/web/DesktopRightColumn.tsx')
-rw-r--r-- | src/view/shell/web/DesktopRightColumn.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/view/shell/web/DesktopRightColumn.tsx b/src/view/shell/web/DesktopRightColumn.tsx index b051e6094..2f70a43d2 100644 --- a/src/view/shell/web/DesktopRightColumn.tsx +++ b/src/view/shell/web/DesktopRightColumn.tsx @@ -3,10 +3,8 @@ import {StyleSheet, View} from 'react-native' import {Text} from '../../com/util/text/Text' import {LiteSuggestedFollows} from '../../com/discover/LiteSuggestedFollows' import {s} from 'lib/styles' -import {useStores} from 'state/index' export const DesktopRightColumn: React.FC = () => { - const store = useStores() return ( <View style={styles.container}> <Text type="lg-bold" style={s.mb10}> @@ -21,6 +19,7 @@ const styles = StyleSheet.create({ container: { position: 'absolute', right: 0, + top: 90, width: '400px', paddingHorizontal: 16, paddingRight: 32, |