mirror of
https://git.suyu.dev/suyu/website.git
synced 2025-12-31 11:44:35 +01:00
fix profiles a little more idk
This commit is contained in:
parent
a5b383aa5d
commit
57e423633c
4 changed files with 39 additions and 15 deletions
17
src/components/Room.svelte
Normal file
17
src/components/Room.svelte
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue