aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--css/base.css11
-rw-r--r--index.html3
2 files changed, 14 insertions, 0 deletions
diff --git a/css/base.css b/css/base.css
index a115d77..78085af 100644
--- a/css/base.css
+++ b/css/base.css
@@ -56,11 +56,22 @@ body {
h1,
h2,
h3 {
+ /* Bring the headers closer to the text under them, this is a
+ * complementary command with the margin-top in `p` tag styling */
+ padding-bottom: 0;
+ margin-bottom: 0;
/* Set line-height for headers to prevent overlap when browser is
* forced to wrap the words. */
line-height: 1;
}
+p {
+ /* Bring the headers closer to the text under them, this is a
+ * complementary command with the padding & margin bottom in the
+ * header tags above */
+ margin-top: 5px;
+}
+
/* Wrap the entire content of the page in this `div` - the navigation
* bar is an exception, because of its fixed position. */
#container {
diff --git a/index.html b/index.html
index ac98f41..b1b1489 100644
--- a/index.html
+++ b/index.html
@@ -95,6 +95,9 @@ git checkout -b master <span class="comment"># Make n
</p>
<p>See the <a href="https://gitlab.com/maneage/project/-/blob/maneage/README-hacking.md#customization-checklist">Customization Checklist</a> in the cloned <code>README-hacking.md</code> file for the next steps to start customizing Maneage for your project.
</p>
+ <h3>Submitting bugs and suggesting new features</h3>
+ <p>Development discussions (like list of existing <a href="https://savannah.nongnu.org/bugs/?group=reproduce">bugs</a> and <a href="https://savannah.nongnu.org/task/?group=reproduce">tasks</a>) are currently maintained in <a href="https://savannah.nongnu.org/projects/reproduce/">GNU Savannah</a>.
+ You can <a href="https://savannah.nongnu.org/account/register.php">register in GNU Savannah</a> to <a href="https://savannah.nongnu.org/bugs/?func=additem&group=reproduce">submit a bug</a> or <a href="https://savannah.nongnu.org/task/?func=additem&group=reproduce">submit a task</a>, or comment on an existing bug or task. If you want to submit a general issue without registering on Savannah, you can <a href="https://savannah.nongnu.org/support/?func=additem&group=reproduce">submit an item</a>.</p>
<h3>Merge/Pull requests</h3>
<p>As you continue customizing Maneage for your own project, you will notice generic improvements that can be useful for other projects too.
In such cases, please send us those changes to implement in the core Maneage branch and let them propagate to all projects using it.