clean up a bunch of small issues #33

Open
anton wants to merge 6 commits from feat/fixes into main
10 changed files with 21 additions and 19 deletions
Showing only changes of commit 24bd065ecb - Show all commits

View File

@ -1,5 +1,5 @@
<footer>
<div class="footer-container">
<div class="menu footer-container">
<div style="font-size: 1rem">
{{ site.footer }}
</div>

View File

@ -32,8 +32,8 @@
{% endfor %}
</p>
</main>
{%- include footer.html -%}
</div>
{%- include footer.html -%}
</body>
</html>

View File

@ -85,7 +85,7 @@
{% include primary-cta.html %}
</main>
{%- include footer.html -%}
</div>
{%- include footer.html -%}
</body>
</html>

View File

@ -58,8 +58,8 @@
{% include companies-carousel.html hide_title='true' %}
</main>
<br />
{%- include footer.html -%}
</div>
{%- include footer.html -%}
</body>
<script>

View File

@ -4,17 +4,15 @@
{%- include head.html -%}
<body>
{%- include header.html -%}
<div class="container">
{%- include header.html -%}
<main>
{{ content }}
</main>
{%- include footer.html -%}
</div>
{%- include footer.html -%}
</body>
</html>

View File

@ -69,7 +69,7 @@
{% include primary-cta.html %}
</main>
{%- include footer.html -%}
</div>
{%- include footer.html -%}
</body>
</html>

View File

@ -24,8 +24,8 @@
</p>
</article>
</main>
{%- include footer.html -%}
</div>
{%- include footer.html -%}
</body>
</html>

View File

@ -138,6 +138,7 @@
</section>
</main>
{%- include footer.html -%}
</div>
{%- include footer.html -%}
</body>
</html>

View File

@ -160,10 +160,8 @@
</section>
</main>
{%- include footer.html -%}
</div>
{%- include footer.html -%}
</body>
</html>

View File

@ -22,10 +22,6 @@ html {
scroll-behavior: smooth;
}
main {
min-height: 100vh;
}
body {
width: 100%;
background-color: var(--background-color);
@ -36,6 +32,13 @@ body {
color: var(--text-color);
text-align: left;
line-height: $base-line-height !important;
display: flex;
flex-direction: column;
min-height: 100vh;
}
body > div.container {
flex: 1;
}
h1 {
@ -591,7 +594,8 @@ margin-bottom: 16px;
footer {
color: var(--light-grey);
border-top: 1px solid var(--light-grey);
background-color: color-mix(in srgb, var(--background-color), white 1.5%);
border-top: 1px solid rgba(255, 255, 255, 0.13);
padding: 40px 0px;
text-align: right;
margin-top: 80px;
@ -627,6 +631,7 @@ header {
padding: 24px;
margin-bottom: 24px;
border-bottom: 1px solid rgba(255, 255, 255, 0.13);
background-color: color-mix(in srgb, var(--background-color), white 1.5%);
}
header p {