We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 560c81d commit a92683aCopy full SHA for a92683a
src/components/TeamStatus.vue
@@ -1,7 +1,7 @@
1
<template>
2
<div>
3
<div :class="{'team-yellow': color === 'yellow', 'team-blue': color === 'blue'}" class="team-name">
4
- <div>{{team.name}}</div>
+ <div class="team-name-text">{{team.name}}</div>
5
</div>
6
7
<img :src="logoUrl" alt="team logo" class="team-logo"/>
@@ -44,6 +44,9 @@
44
<style scoped>
45
.team-name {
46
height: 15vh;
47
+ display: flex;
48
+ flex-direction: column;
49
+ justify-content: flex-end;
50
}
51
52
.team-logo {
0 commit comments