Skip to content

Commit

Permalink
style: updated recents menu margins and removed borders
Browse files Browse the repository at this point in the history
  • Loading branch information
Vali-98 committed Jul 3, 2024
1 parent f916879 commit 0648104
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions components/ChatMenu/Recents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ const Recents = () => {
<Text style={styles.title}>Recent</Text>
{!noRecents && (
<TouchableOpacity style={styles.button} onPress={RecentMessages.flush}>
<Text style={{ color: Style.getColor('primary-text2') }}>
<Text
style={{
color: Style.getColor('primary-text2'),
fontSize: 16,
}}>
Clear All
</Text>
</TouchableOpacity>
Expand Down Expand Up @@ -134,6 +138,7 @@ const styles = StyleSheet.create({
title: {
color: Style.getColor('primary-text1'),
fontSize: 20,
marginLeft: 8,
},

subtitle: {
Expand All @@ -144,8 +149,8 @@ const styles = StyleSheet.create({
button: {
padding: 4,
paddingHorizontal: 8,
borderColor: Style.getColor('primary-surface3'),
borderWidth: 2,
//borderColor: Style.getColor('primary-surface3'),
//borderWidth: 2,
borderRadius: 4,
marginLeft: 12,
},
Expand All @@ -163,6 +168,7 @@ const styles = StyleSheet.create({
justifyContent: 'space-between',
shadowColor: Style.getColor('primary-shadow'),
elevation: 12,
marginLeft: 12,
},

textContainer: {
Expand Down

0 comments on commit 0648104

Please sign in to comment.