I am unable to create a custom deep view for ios. Every change is saved and registered except the change to the style of the deepview. For example ,say i add fonts-style under the style tag to my deep view html page:
<style>
@font-face {
font-family: 'montserrat';
src: url('montserrat-regular-webfont.woff2') format('woff2'),
url('montserrat-regular-webfont.woff') format('woff');
font-weight: regular;
font-style: normal;
}
</style>
(I have a lot of code to be added to the style part and am stating this just as an example.) So basically when i write this in the deep view html window provided by branch.io the changes are seen on the preview window but as soon as i hit 'save' the page refreshes and i lose my changes. Any suggestion as to what i'm missing here, or how to solve this.