Skip to content

Commit a92683a

Browse files
committed
Align team name at bottom
1 parent 560c81d commit a92683a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/TeamStatus.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div>
33
<div :class="{'team-yellow': color === 'yellow', 'team-blue': color === 'blue'}" class="team-name">
4-
<div>{{team.name}}</div>
4+
<div class="team-name-text">{{team.name}}</div>
55
</div>
66

77
<img :src="logoUrl" alt="team logo" class="team-logo"/>
@@ -44,6 +44,9 @@
4444
<style scoped>
4545
.team-name {
4646
height: 15vh;
47+
display: flex;
48+
flex-direction: column;
49+
justify-content: flex-end;
4750
}
4851
4952
.team-logo {

0 commit comments

Comments
 (0)