From c5f28376c86478b4c55d9f0910d8d0cb4a1feb06 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 22 Feb 2023 23:37:14 -0600 Subject: Rework web shell ui --- src/view/shell/web/DesktopRightColumn.tsx | 43 +++++++------------------------ 1 file changed, 10 insertions(+), 33 deletions(-) (limited to 'src/view/shell/web/DesktopRightColumn.tsx') diff --git a/src/view/shell/web/DesktopRightColumn.tsx b/src/view/shell/web/DesktopRightColumn.tsx index 22acac382..b051e6094 100644 --- a/src/view/shell/web/DesktopRightColumn.tsx +++ b/src/view/shell/web/DesktopRightColumn.tsx @@ -1,25 +1,15 @@ import React from 'react' -import {View, StyleSheet} from 'react-native' -import {Link} from '../../com/util/Link' +import {StyleSheet, View} from 'react-native' import {Text} from '../../com/util/text/Text' -import {usePalette} from 'lib/hooks/usePalette' -import {MagnifyingGlassIcon} from 'lib/icons' import {LiteSuggestedFollows} from '../../com/discover/LiteSuggestedFollows' import {s} from 'lib/styles' +import {useStores} from 'state/index' export const DesktopRightColumn: React.FC = () => { - const pal = usePalette('default') + const store = useStores() return ( - - - - - - - Search - - - + + Suggested Follows @@ -30,23 +20,10 @@ export const DesktopRightColumn: React.FC = () => { const styles = StyleSheet.create({ container: { position: 'absolute', - right: 'calc(50vw - 650px)', - width: '350px', - height: '100%', - borderLeftWidth: 1, - overscrollBehavior: 'auto', - paddingLeft: 30, - paddingTop: 10, - }, - searchContainer: { - flexDirection: 'row', - alignItems: 'center', - paddingHorizontal: 14, - paddingVertical: 10, - borderRadius: 20, - marginBottom: 20, - }, - searchIcon: { - marginRight: 5, + right: 0, + width: '400px', + paddingHorizontal: 16, + paddingRight: 32, + paddingTop: 20, }, }) -- cgit 1.4.1