Skip to content

Commit a07df59

Browse files
committed
...
1 parent 0487982 commit a07df59

5 files changed

Lines changed: 18 additions & 3 deletions

File tree

docs/assets/css/base.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -892,6 +892,15 @@ html.cs-dark .highlight {
892892
opacity: 0.8;
893893
}
894894

895+
.page__content .text-center {
896+
text-align: center;
897+
}
898+
.page__content .text-right {
899+
text-align: right;
900+
}
901+
.page__content .text-left {
902+
text-align: left;
903+
}
895904

896905
/******* Page - Images *******/
897906

docs/assets/css/layout.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ html.cs-light .color-scheme button.light {
439439
}
440440

441441
.page__content {
442-
padding: 1rem;
442+
padding: 1.5rem 1rem 3rem;
443443
font-size: 1rem;
444444
width: 100%;
445445
max-width: 60rem;
@@ -448,7 +448,7 @@ html.cs-light .color-scheme button.light {
448448
@media (min-width: 64rem) {
449449
.page__content {
450450
font-size: 1.1rem;
451-
padding: 2rem;
451+
padding: 2rem 2rem 3rem;
452452
margin-left: 1rem;
453453
margin-right: auto;
454454
}
5.63 KB
Loading

docs/content/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,9 @@ But now we are realizing *"Oh, do you know what? HTML is actually really good! L
2020
However, in the world of Python web frameworks there is a problem: web forms had always been somewhat awkward. In fact, they were a big reason to use JavaScript in the first place. The existing libraries lack support for features like nested forms and/or are embedded in a particular framework.
2121

2222
That's why I built **Formidable**, a library that, although small, can handle all the advanced scenarios like subforms, dynamic nested forms, custom validators, translatable messages, integration with any ORM and template system, and more. I hope you enjoy it.
23+
24+
----
25+
26+
<p class="text-center" markdown="span">
27+
[Get started!](/docs/)
28+
</p>

docs/content/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ or **even better**:
9797
</div>
9898
```
9999

100-
You can read more about these helpers in the [Fields page](/docs/fields/).
100+
You can read more about these helpers in the [Fields page](/docs/fields/#render-shortcut).
101101

102102
///
103103

0 commit comments

Comments
 (0)