diff --git a/app/components/CollectionLink/CollectionLink.tsx b/app/components/CollectionLink/CollectionLink.tsx
index f500c54..4ba4210 100644
--- a/app/components/CollectionLink/CollectionLink.tsx
+++ b/app/components/CollectionLink/CollectionLink.tsx
@@ -32,12 +32,14 @@ export const CollectionLink = (props: any) => {
)}
-
-
- {props.title}
-
-
- {props.description.substring(0, 300)}
+
+
+
+ {`${props.description.slice(0, 125)}${props.description.length > 125 ? "..." : ""}`}
diff --git a/app/components/ReleaseLink/ReleaseLink.16_9.tsx b/app/components/ReleaseLink/ReleaseLink.16_9.tsx
index adce790..1c2c594 100644
--- a/app/components/ReleaseLink/ReleaseLink.16_9.tsx
+++ b/app/components/ReleaseLink/ReleaseLink.16_9.tsx
@@ -93,19 +93,19 @@ export const ReleaseLink169 = (props: any) => {
)}
-
+
{props.genres && (
-
+
{props.genres}
)}
-
+
{props.title_ru}
-
- {props.description}
+
+ {`${props.description.slice(0, 125)}${props.description.length > 125 ? "..." : ""}`}
diff --git a/public/changelog/3.1.1.md b/public/changelog/3.1.1.md
new file mode 100644
index 0000000..209b4d7
--- /dev/null
+++ b/public/changelog/3.1.1.md
@@ -0,0 +1,13 @@
+# 3.1.1
+
+## Добавлено
+
+- Список жанров на карточке релиза
+
+## Изменено
+
+- Размер шрифта на карточках релиза и коллекции для разных разрешений
+
+## Исправлено
+
+- Наложение названия и описания на информацию релиза в карточке для мобильных устройств