Spaces:
Sleeping
Sleeping
File size: 343 Bytes
1fff71f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<script lang="ts">
// Loading spinner component with Bootstrap styling
</script>
<div class="d-flex justify-content-center align-items-center p-4">
<div class="spinner-border text-primary" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<style>
.spinner-border {
width: 3rem;
height: 3rem;
}
</style>
|