We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a482ae commit 64f418bCopy full SHA for 64f418b
pcweb/pages/gallery/gallery.py
@@ -156,12 +156,14 @@ def create_header():
156
class_name="flex flex-col justify-center items-center gap-6 w-full text-center",
157
)
158
159
-
160
@webpage(path="/templates", title="Templates · Reflex")
161
def gallery() -> rx.Component:
162
return rx.el.section(
163
- create_header(),
164
- create_grid_with_items(),
+ rx.box(
+ create_header(),
+ create_grid_with_items(),
165
+ class_name="w-full max-w-7xl mx-auto",
166
+ ),
167
id="gallery",
- class_name="flex flex-col mx-auto mt-4 mb-20 px-4 lg:px-6 pt-24 lg:pt-52 w-full",
168
+ class_name="w-full px-4 pt-24 lg:pt-52 mt-4 mb-20",
169
0 commit comments