fix profiles a little more idk

This commit is contained in:
not-nullptr 2024-03-11 00:13:27 +00:00
parent a5b383aa5d
commit 57e423633c
4 changed files with 39 additions and 15 deletions

View file

@ -0,0 +1,17 @@
<script lang="ts">
import type { IRoom } from "$types/rooms";
export let room: IRoom;
</script>
<div class="room">
<h3>{room.name}</h3>
<p>{room.description}</p>
</div>
<style>
.room {
border: solid thin #353e52;
padding: 8px 12px;
}
</style>