1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-25 13:09:19 +01:00

28 lines
542 B
HTML
Raw Normal View History

2018-01-31 09:06:06 -08:00
<div class="settings-list-wrapper">
{{#if label}}
<ul class="settings-list" aria-label="{{label}}">
<slot></slot>
</ul>
{{else}}
<ul class="settings-list">
<slot></slot>
</ul>
{{/if}}
</div>
2018-01-13 12:12:17 -08:00
<style>
2018-01-31 09:06:06 -08:00
.settings-list-wrapper {
margin: 20px 20px;
}
ul.settings-list {
2018-01-13 12:12:17 -08:00
list-style: none;
width: 100%;
2018-01-13 12:12:17 -08:00
border: 1px solid var(--settings-list-item-border);
2018-01-31 09:06:06 -08:00
margin: 0 auto;
box-sizing: border-box;
}
@media (max-width: 767px) {
.settings-list-wrapper {
margin: 20px 0;
}
2018-01-13 12:12:17 -08:00
}
</style>