MDL-83485 core: Add bottom margin on preference links

To meet the WCAG 2.2 Level AA requirement for minimum target size,
we need to add a bit of spacing between the links on the user
preferences page.

More information:
https://www.w3.org/WAI/WCAG22/Understanding/target-size-minimum.html
This commit is contained in:
Jun Pataleta
2025-11-27 11:37:14 +08:00
parent 391b88f628
commit b646b9fde2
+1 -1
View File
@@ -37,7 +37,7 @@
<h3 class="card-title">{{title}}</h3>
<ul class="card-text list-unstyled">
{{#nodes}}
<li><a {{#get_title}}title="{{get_title}}"{{/get_title}} href="{{{action}}}">{{get_content}}</a></li>
<li class="mb-1"><a {{#get_title}}title="{{get_title}}"{{/get_title}} href="{{{action}}}">{{get_content}}</a></li>
{{/nodes}}
</ul>
</div>