Skip to content

Commit

Permalink
fix(Location): Fix display behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
mramosbhz committed Dec 2, 2024
1 parent 413ac7b commit 464fcb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Location.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div v-if="!isEditing" class="location" :class="isFailedMessage(status, position) + ' ' + getBlipContainer">
<bds-grid justifyContent="space-between" gap="1" align-items="center" :direction="position === 'left' ? 'row' : 'row-reverse'">
<bds-grid justifyContent="space-between" gap="0" align-items="center" :direction="position === 'left' ? 'row' : 'row-reverse'">
<div :class="simplified ? '' : 'bubble ' + position" :style=" simplified ? '' : 'width: ' + bubbleWidth" style="width: 100%;">
<bds-button-icon v-if="deletable"
class="editIco trashIco icon-button-margin"
Expand Down
1 change: 1 addition & 0 deletions src/components/ReplyCard/InReplyTo/InReplyToLocation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,6 @@
<style scoped>
.container-location {
padding-left: 10px;
width: 100%;
}
</style>

0 comments on commit 464fcb6

Please sign in to comment.