File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
src/components/game-events Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change 4
4
v-if =" eventProposalsPresent"
5
5
v-for =" (proposal, index) in eventProposals"
6
6
:key =" index" >
7
- <span :class =" {'team-blue': byTeam(proposal) === 2, 'team-yellow': byTeam(proposal) === 1}" >
8
- {{proposal.gameEvent.type}}
9
- </span >
7
+ <span :class =" {'team-blue': byTeam(proposal) === 2, 'team-yellow': byTeam(proposal) === 1}" >
8
+ {{proposal.gameEvent.type}}
9
+ </span >
10
10
<span >by {{proposal.proposerId}}</span >
11
11
(<span v-format-ns-duration =" proposalTimeout(proposal.validUntil)" ></span >):
12
- <p >
13
- <span v-for =" detail in detailsList(proposal)"
14
- :key =" detail.key" >{{detail.key}}: {{detail.value}}<br /></span >
15
- </p >
12
+ <p class =" details-row"
13
+ v-for =" detail in detailsList(proposal)"
14
+ :key =" detail.key" >{{detail.key}}: {{detail.value}}</p >
16
15
<a class =" btn-accept"
17
16
v-b-tooltip.hover
18
17
title =" Accept this game event"
96
95
bottom : 0 ;
97
96
margin : 0.3em ;
98
97
}
98
+
99
+ .details-row {
100
+ margin-bottom : 0 ;
101
+ }
102
+
99
103
</style >
You can’t perform that action at this time.
0 commit comments