We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5ec5787 + 2621123 commit 05b6bdeCopy full SHA for 05b6bde
eventsapp/uix/screens/communityscreen.py
@@ -41,8 +41,8 @@ class CommunityScreen(Screen):
41
font_size: dp(15)
42
color: 0, 0, 0, 1
43
BoxLayout:
44
- orientation: 'vertical'
45
- spacing: dp(1)
+ orientation: 'horizontal'
+ spacing: dp(7)
46
size_hint_y: None
47
size: self.size[0], dp(100)
48
id: social_icons
@@ -75,7 +75,7 @@ def chunks(data, SIZE=10):
75
yield {k:data[k] for k in islice(it, SIZE)}
76
77
if self.community_social != []:
78
- for items in chunks(self.community_social, 3):
+ for items in chunks(self.community_social, 1):
79
bl = BoxLayout()
80
self.add_social_icons(bl, items)
81
social_icons.add_widget(bl)
0 commit comments