fln-espranza 0.0.57 → 0.0.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/components/EButton.tsx
CHANGED
|
@@ -38,7 +38,7 @@ export default function EButton({
|
|
|
38
38
|
>
|
|
39
39
|
<View
|
|
40
40
|
style={[
|
|
41
|
-
tw`flex-row justify-center items-center rounded-full border-2 border-black/5 ${small ? 'h-10 px-4' : 'h-14 px-8'} ${disabled ? "opacity-40" : ""} ${type === "clear"
|
|
41
|
+
tw` mt-2 flex-row justify-center items-center rounded-full border-2 border-black/5 ${small ? 'h-10 px-4' : 'h-14 px-8'} ${disabled ? "opacity-40" : ""} ${type === "clear"
|
|
42
42
|
? "bg-transparent "
|
|
43
43
|
: type === 'white' ? "bg-white"
|
|
44
44
|
: type === "secondary"
|
|
@@ -18,7 +18,7 @@ export default function EListSchool({
|
|
|
18
18
|
}: IProps) {
|
|
19
19
|
return (
|
|
20
20
|
<View style={tw`border-b border-slate-200 py-3`}>
|
|
21
|
-
<EText size="base" style={tw`font-bold text-slate-800 mb-1 h-
|
|
21
|
+
<EText size="base" style={tw`font-bold text-slate-800 mb-1 h-7`} numberOfLines={2}>
|
|
22
22
|
{name}
|
|
23
23
|
</EText>
|
|
24
24
|
<View style={tw`flex-row items-center`}>
|