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>
|
||||
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>
|
||||
|
|
Loading…
Reference in a new issue