Design fixes
/ build_website (push) Successful in 7s Details
/ build_and_push_container (push) Has been skipped Details

This commit is contained in:
Michał Rudowicz 2025-02-26 21:15:02 +01:00
parent 74211ebdc7
commit 26f642b340
4 changed files with 4 additions and 12 deletions

View File

@ -11,14 +11,6 @@
<a href="{{ site.baseurl }}"><img width="{{ site.logo.mobile_footer_width }}" height="{{ site.logo.mobile_footer_height }}" alt="{{ site.title }}" src="{{ site.logo.mobile | relative_url }}" /></a> <a href="{{ site.baseurl }}"><img width="{{ site.logo.mobile_footer_width }}" height="{{ site.logo.mobile_footer_height }}" alt="{{ site.title }}" src="{{ site.logo.mobile | relative_url }}" /></a>
</div> </div>
</h2> </h2>
<ul>
{% assign footermenu = site.data.menus.footer | sort: 'weight' %}
{% for item in footermenu %}
<li class="{% if item.url == page.url %}active{% endif %}">
<a href="{{ item.url | relative_url }}">{{ item.name }}</a>
</li>
{% endfor %}
</ul>
</div> </div>
</div> </div>
</div> </div>

View File

@ -21,7 +21,7 @@
.feature-title { .feature-title {
font-width: bold; font-width: bold;
margin-top: 0; margin-top: 0;
color: $primary; color: darken($primary, 10%);
} }
.feature-content { .feature-content {
margin-bottom: 0; margin-bottom: 0;

View File

@ -1,6 +1,6 @@
.header { .header {
color: $primary; color: #000;
background-color: #ffffff; background-color: $primary;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;

View File

@ -12,7 +12,7 @@
display: inline-block; display: inline-block;
font-weight: normal; font-weight: normal;
text-decoration: none; text-decoration: none;
color: $primary; color: #000;
&:hover { &:hover {
text-decoration: underline; text-decoration: underline;
} }