aotds-docks/src/lib/components/Section.svelte

33 lines
480 B
Svelte
Raw Normal View History

2020-07-28 18:38:40 +00:00
<div>
2021-05-17 14:07:01 +00:00
<h2>{label}</h2>
<hr />
2020-07-28 18:38:40 +00:00
</div>
<slot />
2020-07-19 20:21:28 +00:00
<script>
2021-05-17 14:07:01 +00:00
export let label;
2020-07-19 20:21:28 +00:00
</script>
2020-07-28 18:38:40 +00:00
<style>
div {
display: flex;
grid-column: 1 / span 3 !important;
align-items: baseline;
gap: 1em;
2023-05-01 16:41:39 +00:00
margin-bottom: 1rem;
2023-04-17 13:16:34 +00:00
background-color: var(--primary-background);
2020-07-28 18:38:40 +00:00
}
2021-05-17 14:07:01 +00:00
h2 {
font-weight: bold;
2023-04-17 13:16:34 +00:00
font-size: var(--font-scale-12);
2023-05-01 16:41:39 +00:00
margin: 0px;
height: 2rem;
2021-05-17 14:07:01 +00:00
}
2020-07-28 18:38:40 +00:00
hr {
flex: 1;
2021-05-17 14:07:01 +00:00
background: #333;
2023-03-21 14:43:26 +00:00
border-top: 1px solid black;
2020-07-28 18:38:40 +00:00
}
2021-05-17 14:07:01 +00:00
</style>