frontend: containers refactor

This commit is contained in:
OleSTEEP 2025-10-13 21:40:31 +03:00
parent 5be65229f4
commit 09c0f12692
11 changed files with 126 additions and 72 deletions

View file

@ -7,7 +7,7 @@
let { date, name } = $props();
</script>
<div class="queue-item horisontal-bar rounded">
<div class="queue-item rounded">
<p>{date}</p>
<p class="ellipsis">{name}</p>
<ImgButton style="edit" name="Изменить" image={edit_btn}/>
@ -19,9 +19,12 @@
.queue-item {
margin: 0;
padding: 0;
display: flex;
align-content: center;
}
.queue-item p {
align-content: center;
margin: 0.5rem;
}