1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-10 18:25:50 +01:00
Pinafore-Web-Client-Frontend/routes/settings/_components/SettingsList.html
2018-01-21 01:19:28 -08:00

18 lines
331 B
HTML

{{#if label}}
<ul class="settings-list" aria-label="{{label}}">
<slot></slot>
</ul>
{{else}}
<ul class="settings-list">
<slot></slot>
</ul>
{{/if}}
<style>
ul.settings-list {
list-style: none;
width: 100%;
border: 1px solid var(--settings-list-item-border);
margin: 20px auto;
max-width: 80%;
}
</style>