more tweaking
This commit is contained in:
parent
aac2a03957
commit
8d42d5864c
2 changed files with 6 additions and 9 deletions
Binary file not shown.
|
@ -1,11 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
export let text = "replace this";
|
export let text = 'replace this'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="talkingPointNameContainer">
|
|
||||||
<h2 class="talkingPointName">{text}</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.talkingPointNameContainer {
|
.talkingPointNameContainer {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -24,12 +20,13 @@
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen
|
@media only screen and (max-device-width: 900px) and (orientation: portrait) {
|
||||||
and (max-device-width: 900px)
|
|
||||||
and (orientation: portrait) {
|
|
||||||
.talkingPointNameContainer .talkingPointName {
|
.talkingPointNameContainer .talkingPointName {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<div class="talkingPointNameContainer">
|
||||||
|
<h2 class="talkingPointName">{text}</h2>
|
||||||
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue