Move buttons around

master
John Montagu, the 4th Earl of Sandvich 2024-11-16 21:32:58 -08:00
parent a0fadfca94
commit bf45b64135
Signed by: sandvich
GPG Key ID: 9A39BE37E602B22D
2 changed files with 12 additions and 9 deletions

View File

@ -40,9 +40,13 @@ function leaveTeam() {
</em>
<div class="team-details-button-group">
<RouterLink class="button" :to="'/schedule?teamId=' + team.id">
<button class="accent">
<i class="bi bi-calendar-fill margin"></i>
View schedule
<button>
<i class="bi bi-calendar-fill"></i>
</button>
</RouterLink>
<RouterLink class="button" :to="{ name: 'team-settings/' }">
<button>
<i class="bi bi-gear-fill"></i>
</button>
</RouterLink>
<button
@ -94,10 +98,4 @@ table.member-table th {
justify-content: end;
gap: 4px;
}
.create-invite-group {
display: flex;
gap: 8px;
align-items: center;
}
</style>

View File

@ -68,4 +68,9 @@ onMounted(() => {
padding: 8px;
}
.create-invite-group {
display: flex;
gap: 8px;
align-items: center;
}
</style>