www-2021/src/components/Globe.svelte

20 lines
352 B
Svelte
Raw Normal View History

2021-04-16 10:07:57 -06:00
<div class="globeContainer">
<img alt="placeholder for globe" src="https://via.placeholder.com/225" />
</div>
<style>
.globeContainer {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: flex-end;
background-color: #00111d;
color: #ffffff;
}
img {
padding-right: 3em;
}
</style>