yew/examples/async_clock/index.scss
Marcel ee92b6d305
Async example (#2892)
* Async example

* Formatted

* Demo send_future and send_stream

* Better comment

* Reduce dependencies

* Typo

* Remove tokio_stream dependency

* Remove tokio dependency

* Formatting

* Variety of async methods

* Updated README

* Remove wasm-bindgen-futures dependency
2022-10-03 16:33:16 +05:00

43 lines
702 B
SCSS

body {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 16pt;
}
.app {
display: flex;
justify-content: center;
flex-direction: row;
}
.time-display {
display: flex;
justify-content: center;
color: darkblue;
font-size: 24pt;
font-weight: bold;
margin-bottom: 15px;
}
.joke-display {
display: flex;
justify-content: center;
color: orangered;
max-width: 75%;
border-color: darkblue;
border-style: dashed;
border-width: 1px;
padding: 10px;
}
.fun-score-display {
font-style: italic;
}
.clock {
display: flex;
flex-direction: column;
row-gap: 15px;
align-items: center;
}