40 lines
848 B
Svelte
40 lines
848 B
Svelte
<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;
|
|
}
|
|
|
|
@media only screen and (max-device-width: 900px) and (orientation: portrait) {
|
|
.talkingPointContentContainer {
|
|
padding-bottom: 1em;
|
|
}
|
|
|
|
.talkingPointContentContainer .talkingPointContent {
|
|
padding-top: 0;
|
|
padding-left: 0;
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<div class="talkingPointContentContainer">
|
|
<div class="talkingPointContent">
|
|
<slot />
|
|
</div>
|
|
</div>
|