Embed app with app title

I have my app embedded currently. I had to create my own title for the embedded app. I would like to just include the normal title that shows up in my app. That way, it will move and resize on mobile just like it does using my knack.com link.

What I have

What I want


Update. I found a way to make it look like I want. There may be a better way to do this, but it works.

I just added the following CSS.

.kn-mobile-nav-toggle:after{
content: "Order Mangement System";
}

I also had to hide the <div> i use to show the title when viewing on mobile with the following CSS.

@media screen and (max-width: 768px) {
.top{
visibility: hidden;
font-size: 0px;
padding: 0px;
margin: 0px;
}