Skip to content

Commit

Permalink
adjust title padding on viewpoints < 1024px and fix #847
Browse files Browse the repository at this point in the history
  • Loading branch information
dartcafe committed Feb 22, 2020
1 parent 278674b commit 67158fb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/js/views/Vote.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</ActionButton>
</Actions>
</div>
<PollTitle />
<PollTitle class="poll-title" />
<PollInformation />
<VoteHeaderPublic v-if="!OC.currentUser" />
<PollDescription />
Expand Down Expand Up @@ -198,6 +198,7 @@ export default {

.header-actions {
right: 0;
top: 0;
position: absolute;
display: flex;
}
Expand All @@ -207,5 +208,10 @@ export default {
width: 44px;
height: 44px;
}

@media (max-width: (1024px)) {
.poll-title {
padding-left: 14px;
padding-right: 90px;
}
}
</style>

0 comments on commit 67158fb

Please sign in to comment.