mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 11:30:16 +00:00
20 lines
339 B
Svelte
20 lines
339 B
Svelte
|
<script lang="ts">
|
||
|
import VacancyIcon from './icons/Vacancy.svelte'
|
||
|
</script>
|
||
|
|
||
|
<div class="root">
|
||
|
<VacancyIcon size="xsmall" />
|
||
|
</div>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.root {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
color: #fff;
|
||
|
background-color: #60B96E;
|
||
|
}
|
||
|
</style>
|