diff --git a/src/assets/css/channel.scss b/src/assets/css/channel.scss
index 343da1d..f6f862e 100644
--- a/src/assets/css/channel.scss
+++ b/src/assets/css/channel.scss
@@ -104,7 +104,7 @@
/* full bleed */
padding: 0 0 0 0;
border-radius: 0 !important;
- .v-image, video {
+ .v-img, video {
border-radius: 0 !important;
}
}
@@ -126,7 +126,7 @@
}
/* Make all images 'cover' */
- .v-image__image {
+ .v-img__image {
background-size: cover;
}
}
diff --git a/src/assets/css/chat.scss b/src/assets/css/chat.scss
index c69b606..ae5a5ce 100644
--- a/src/assets/css/chat.scss
+++ b/src/assets/css/chat.scss
@@ -575,12 +575,13 @@ body {
}
.bubble.image-bubble {
padding: 0px;
+ overflow: hidden;
display: inline-block;
width: 70%;
max-width: 70%;
cursor: pointer;
- .v-image,
+ .v-img,
video {
border-radius: 10px 10px 0 10px;
[dir="rtl"] & {
@@ -1618,3 +1619,16 @@ body {
color: #1d1d1d;
}
}
+
+.c2pa-badge {
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 32px;
+ height: 32px;
+ overflow: hidden;
+ .v-icon {
+ width: 100%;
+ height: 100%;
+ }
+}
\ No newline at end of file
diff --git a/src/assets/css/create.scss b/src/assets/css/create.scss
index 514fd5d..40466d2 100644
--- a/src/assets/css/create.scss
+++ b/src/assets/css/create.scss
@@ -173,7 +173,7 @@
display: flex;
align-items: center;
justify-content: center;
- .v-image {
+ .v-img {
flex: 0 0 14px;
width: 14px;
height: 10px;
diff --git a/src/assets/css/filedrop.scss b/src/assets/css/filedrop.scss
index 76f7b17..f3e10b0 100644
--- a/src/assets/css/filedrop.scss
+++ b/src/assets/css/filedrop.scss
@@ -100,7 +100,7 @@ $small-button-height: 36px;
}
border-radius: 19px;
overflow: hidden;
- .v-image {
+ .v-img {
width: 100%;
height: 100%;
object-fit: cover;
@@ -145,7 +145,7 @@ $small-button-height: 36px;
&.noborder {
border: 2px solid transparent;
}
- .v-image {
+ .v-img {
width: 100%;
height: 100%;
object-fit: cover;
@@ -254,7 +254,7 @@ $small-button-height: 36px;
position: absolute;
overflow: hidden;
opacity: 0;
- .v-image {
+ .v-img {
width: 100%;
height: 100%;
object-fit: cover;
@@ -296,7 +296,7 @@ $small-button-height: 36px;
background: linear-gradient(0deg, #26242b 0%, #26242b 100%), #fff;
position: relative;
padding: 8px;
- .v-image {
+ .v-img {
width: $min-touch-target;
height: $min-touch-target;
border-radius: 8px;
diff --git a/src/components/AudioLayout.vue b/src/components/AudioLayout.vue
index ed66778..5b58c18 100644
--- a/src/components/AudioLayout.vue
+++ b/src/components/AudioLayout.vue
@@ -55,7 +55,7 @@