Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix embed options border radius (#10237)

authored by

Samuel Newman and committed by
GitHub
1f6d6d05 27d1b96e

+3 -9
+3 -9
src/components/dialogs/Embed.tsx
··· 109 109 <Trans>Embed post</Trans> 110 110 </Text> 111 111 <Text 112 - style={[a.text_md, t.atoms.text_contrast_medium, a.leading_normal]}> 112 + style={[a.text_md, t.atoms.text_contrast_medium, a.leading_snug]}> 113 113 <Trans> 114 114 Embed this post in your website. Simply copy the following snippet 115 115 and paste it into the HTML code of your website. ··· 117 117 </Text> 118 118 </View> 119 119 <View 120 - style={[ 121 - a.border, 122 - t.atoms.border_contrast_low, 123 - a.rounded_sm, 124 - a.overflow_hidden, 125 - ]}> 120 + style={[a.border, t.atoms.border_contrast_low, {borderRadius: 18}]}> 126 121 <Button 127 122 label={ 128 123 showCustomisation ··· 190 185 <Button 191 186 label={_(msg`Copy code`)} 192 187 color="primary" 193 - variant="solid" 194 188 size="large" 195 189 onPress={() => { 196 - navigator.clipboard.writeText(snippet) 190 + void navigator.clipboard.writeText(snippet) 197 191 setCopied(true) 198 192 }}> 199 193 {copied ? (