www-2021/src/components/TalkingPointContent.svelte

29 lines
561 B
Svelte
Raw Normal View History

2021-04-16 10:07:57 -06:00
<div class="talkingPointContentContainer">
<div class="talkingPointContent">
<slot />
</div>
</div>
<style>
.talkingPointContentContainer {
width: 100%;
height: 100%;
display: flex;
align-items: flex-start;
justify-content: flex-start;
background-color: #00111d;
color: #ffffff;
}
.talkingPointContentContainer .talkingPointContent {
padding-top: 1em;
padding-left: 2em;
font-size: 1em;
max-width: 850px;
}
:global(.talkingPointContent li:not(:last-child)) {
margin-bottom: 1em;
}
</style>