Вот упрощенная версия моего кода:
Код: Выделить всё
import Child from './Prueba2.svelte';
.prueba {
flex: 1;
background-color: grey;
height: 100%;
}
footer {
background-color: red;
color: white;
text-align: center;
padding: 10px 0;
font-size: 0.9em;
}
.prueba_container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.child {
background-color: purple;
height: 100%;
}
Footer
Код: Выделить всё
.prueba_child {
flex: 1;
background-color: orange;
height: 100%;
}
This should occupy the whole screen
Подробнее здесь: https://stackoverflow.com/questions/791 ... f-the-page