Design fixes #5

Merged
martyna merged 1 commits from css-fixes into main 2025-02-26 20:46:22 +00:00
4 changed files with 4 additions and 12 deletions
Showing only changes of commit 26f642b340 - Show all commits

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>
</div>
</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>

View File

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

View File

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

View File

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