feat: add consistent vertical spacing to button wrappers
All checks were successful
Build and Deploy Static Site / build (push) Successful in 59s
All checks were successful
Build and Deploy Static Site / build (push) Successful in 59s
Added a CSS rule to ensure button elements inside the button-wrapper class have consistent vertical spacing except for the last child. This improves uniformity in the UI layout. Updated corresponding HTML to use the newly styled button-wrapper class for proper spacing and alignment.
This commit is contained in:
parent
2a054a7f78
commit
ccbe1b600d
2 changed files with 6 additions and 2 deletions
|
@ -37,6 +37,10 @@
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button-wrapper:not(:last-child) {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
.btn-outline-primary {
|
.btn-outline-primary {
|
||||||
--bs-btn-color: #f570b9;
|
--bs-btn-color: #f570b9;
|
||||||
--bs-btn-border-color: #f570b9;
|
--bs-btn-border-color: #f570b9;
|
||||||
|
|
|
@ -63,7 +63,7 @@
|
||||||
{{ service.long_description }}
|
{{ service.long_description }}
|
||||||
</p>
|
</p>
|
||||||
{% for link in service.links %} {% if link.alternatives %}
|
{% for link in service.links %} {% if link.alternatives %}
|
||||||
<div class="dropdown">
|
<div class="button-wrapper dropdown">
|
||||||
<div class="btn btn-primary shadow">
|
<div class="btn btn-primary shadow">
|
||||||
<a class="main-link" href="{{ link.url }}">{{ link.name }}</a>
|
<a class="main-link" href="{{ link.url }}">{{ link.name }}</a>
|
||||||
<div class="dropdown-toggle-area">▼</div>
|
<div class="dropdown-toggle-area">▼</div>
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
</div>
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a
|
<a
|
||||||
class="btn btn-primary shadow w-100 text-center"
|
class="button-wrapper btn btn-primary shadow w-100 text-center"
|
||||||
href="{{ link.url }}"
|
href="{{ link.url }}"
|
||||||
>{{ link.name }}</a
|
>{{ link.name }}</a
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue