20 lines
352 B
Svelte
20 lines
352 B
Svelte
![]() |
<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>
|