mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
24 lines
389 B
CSS
24 lines
389 B
CSS
#container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
#receiver {
|
|
background: deepskyblue;
|
|
height: 30vh;
|
|
width: 80vw;
|
|
color: white;
|
|
padding: 20px;
|
|
margin: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
#log {
|
|
background: lightgray;
|
|
padding: 20px;
|
|
margin: 20px;
|
|
overflow-y: scroll;
|
|
align-items: start;
|
|
text-align: left;
|
|
}
|