more tweaking

This commit is contained in:
Daniel Vinci 2021-04-30 12:08:34 -06:00
parent aac2a03957
commit 8d42d5864c
No known key found for this signature in database
GPG key ID: 7A700C29916C26CA
2 changed files with 6 additions and 9 deletions

Binary file not shown.

View file

@ -1,11 +1,7 @@
<script>
export let text = "replace this";
export let text = 'replace this'
</script>
<div class="talkingPointNameContainer">
<h2 class="talkingPointName">{text}</h2>
</div>
<style>
.talkingPointNameContainer {
width: 100%;
@ -24,12 +20,13 @@
text-align: right;
}
@media only screen
and (max-device-width: 900px)
and (orientation: portrait) {
@media only screen and (max-device-width: 900px) and (orientation: portrait) {
.talkingPointNameContainer .talkingPointName {
text-align: center;
}
}
</style>
<div class="talkingPointNameContainer">
<h2 class="talkingPointName">{text}</h2>
</div>