Spaces:
Sleeping
Sleeping
to act like toggle selectors (not submit the form)
Browse files- testnavbar.py +3 -3
testnavbar.py
CHANGED
|
@@ -49,9 +49,9 @@ AppleSvg = Svg(role="img", viewBox="0 0 24 24", cls="h-6 w-6 mr-1")(Path(d=Appl
|
|
| 49 |
|
| 50 |
PaymentMethod = Card(
|
| 51 |
Grid(
|
| 52 |
-
Button(DivCentered(Card1Svg,
|
| 53 |
-
Button(DivCentered(PaypalSvg, "PayPal"), cls='h-20 border rounded-lg'),
|
| 54 |
-
Button(DivCentered(AppleSvg,
|
| 55 |
),
|
| 56 |
Form(
|
| 57 |
LabelInput('Name', id='name', placeholder='John Doe'),
|
|
|
|
| 49 |
|
| 50 |
PaymentMethod = Card(
|
| 51 |
Grid(
|
| 52 |
+
Button(DivCentered(Card1Svg, "Card"), cls='h-20 border-2 border-primary rounded-lg', type="button"),
|
| 53 |
+
Button(DivCentered(PaypalSvg, "PayPal"), cls='h-20 border rounded-lg', type="button"),
|
| 54 |
+
Button(DivCentered(AppleSvg, "Apple"), cls='h-20 border rounded-lg', type="button")
|
| 55 |
),
|
| 56 |
Form(
|
| 57 |
LabelInput('Name', id='name', placeholder='John Doe'),
|