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

View File

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