Skip to content

Commit

Permalink
Update photo presenters, fix rounded corner bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dansup committed Apr 1, 2019
1 parent dbaf903 commit 2e0da45
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@
</div>
</template>

<style type="text/css" scoped>
.card-img-top {
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}
</style>

<script type="text/javascript">
export default {
props: ['status'],
Expand Down
7 changes: 7 additions & 0 deletions resources/assets/js/components/presenter/PhotoPresenter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
</div>
</template>

<style type="text/css" scoped>
.card-img-top {
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}
</style>

<script type="text/javascript">
export default {
props: ['status']
Expand Down

0 comments on commit 2e0da45

Please sign in to comment.