29 lines
561 B
Svelte
29 lines
561 B
Svelte
![]() |
<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>
|