Skip to content

Commit

Permalink
feat: Apply border-radius to apps (Poll) - MEED-2678 -Meeds-io/MIPs#81 (
Browse files Browse the repository at this point in the history
#114)

This change allows to add the brandable border radius to the task dashboard

(cherry picked from commit 1552427)
  • Loading branch information
SaraBoutej authored and exo-swf committed Nov 14, 2023
1 parent a6730e2 commit 50bb5db
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,29 +17,31 @@ along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<template>
<v-card
id="createPollComposerButton"
class="mx-4 mb-3 px-6 py-3"
outlined
flat
hover>
<div
class="d-flex flex-row align-center"
@click="openCreatePollDrawer">
<v-icon
color="amber darken-1"
size="50">
fa-poll
</v-icon>
<v-span class="caption font-weight-bold ms-5">
{{ pollActionLabel }}
</v-span>
</div>
<div>
<v-card
id="createPollComposerButton"
class="mx-4 mb-3 px-6 py-3 card-border-radius"
outlined
flat
hover>
<div
class="d-flex flex-row align-center"
@click="openCreatePollDrawer">
<v-icon
color="amber darken-1"
size="50">
fa-poll
</v-icon>
<v-span class="caption font-weight-bold ms-5">
{{ pollActionLabel }}
</v-span>
</div>
</v-card>
<create-poll-drawer
ref="createPollDrawer"
:saved-poll="savedPoll"
@poll-created="createPoll" />
</v-card>
</div>
</template>
<script>
export default {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<template>
<div id="poll-activity-stream" v-if="poll">
<v-card
class="border-color border-radius my-3 pa-5"
class="border-color card-border-radius my-3 pa-5"
outlined>
<poll-activity
:poll="poll"
Expand Down

0 comments on commit 50bb5db

Please sign in to comment.