Renamed textbox container to scene viewport

This commit is contained in:
p11 2025-04-21 10:25:40 +02:00
parent a07cbe38a4
commit a44feb9cdc

View File

@ -41,7 +41,7 @@ fn generate_html(scenes: Vec<Markup>, sections: Vec<Markup>) -> Markup {
html! {
div #story-container {
div .textbox-container {
div .scene-viewport {
@for (index, scene) in scenes.iter().enumerate() {
div .scene-section
data-section-index=(index)
@ -121,7 +121,7 @@ fn global_styles() -> Markup {
}";
const CONTAINER_STYLES: &str = r"
.textbox-container {
.scene-viewport {
width: 75%;
margin: 0 auto;
position: relative;