-
{{ audit.title }}
+
+ {{ audit.title }}
+
{{ audit.fileSize }}
@@ -49,7 +51,7 @@ defineProps<{
.audits-card__content {
display: flex;
- gap: toRem(12);
+ gap: toRem(16);
@include respond-to(xsmall) {
flex-direction: column;
@@ -57,9 +59,15 @@ defineProps<{
}
.audits-card__title-wrp {
- display: flex;
+ display: grid;
+ grid-auto-flow: column;
align-items: center;
- gap: toRem(8);
+ grid-gap: toRem(8);
+ max-width: max-content;
+}
+
+.audits-card__title {
+ @include text-ellipsis;
}
.audits-card__circle {
diff --git a/components/DropMenu.vue b/components/DropMenu.vue
index 0c00e6a..0e780ec 100644
--- a/components/DropMenu.vue
+++ b/components/DropMenu.vue
@@ -1,27 +1,29 @@
-