diff --git a/rsconcept/frontend/README.md b/rsconcept/frontend/README.md
index 01cc86e4..0c887ddf 100644
--- a/rsconcept/frontend/README.md
+++ b/rsconcept/frontend/README.md
@@ -9,9 +9,9 @@ Styling conventions
- layer: z-position
- outer layout: fixed bottom-1/2 left-0 -translate-x-1/2
- - rectangle: mt-3 w-full min-w-10 h-fit flex-grow
+ - rectangle: mt-3 min-w-fit min-w-10 flex-grow
- inner layout: px-3 py-2 flex flex-col gap-3 justify-start items-center
- - overflow behavior: overflow-auto
+ - overflow behavior: overflow-scroll
- border: borer-2 outline-none shadow-md
- colors: clr-controls
- text: text-start text-sm font-semibold whitespace-nowrap
diff --git a/rsconcept/frontend/src/components/Common/ConceptTab.tsx b/rsconcept/frontend/src/components/Common/ConceptTab.tsx
index 7290c0bf..a45a905b 100644
--- a/rsconcept/frontend/src/components/Common/ConceptTab.tsx
+++ b/rsconcept/frontend/src/components/Common/ConceptTab.tsx
@@ -11,7 +11,7 @@ function ConceptTab({ label, className, ...otherProps }: ConceptTabProps) {
return (
);
}
diff --git a/rsconcept/frontend/src/components/Common/PDFViewer.tsx b/rsconcept/frontend/src/components/Common/PDFViewer.tsx
index 6497f422..bf3c1e4d 100644
--- a/rsconcept/frontend/src/components/Common/PDFViewer.tsx
+++ b/rsconcept/frontend/src/components/Common/PDFViewer.tsx
@@ -36,7 +36,7 @@ function PDFViewer({ file }: PDFViewerProps) {
diff --git a/rsconcept/frontend/src/components/DataTable/PaginationTools.tsx b/rsconcept/frontend/src/components/DataTable/PaginationTools.tsx
index 8490acb8..ff504b93 100644
--- a/rsconcept/frontend/src/components/DataTable/PaginationTools.tsx
+++ b/rsconcept/frontend/src/components/DataTable/PaginationTools.tsx
@@ -26,20 +26,18 @@ function PaginationTools({ table, paginationOptions, onChangePaginationOp
return (
-
-
- {table.getState().pagination.pageIndex * table.getState().pagination.pageSize + 1}
- -
- {Math.min(table.getFilteredRowModel().rows.length, (table.getState().pagination.pageIndex + 1) * table.getState().pagination.pageSize)}
-
-
из
-
{table.getFilteredRowModel().rows.length}
-
+
+ {`${table.getState().pagination.pageIndex * table.getState().pagination.pageSize + 1}
+ -
+ ${Math.min(table.getFilteredRowModel().rows.length, (table.getState().pagination.pageIndex + 1) * table.getState().pagination.pageSize)}
+ из
+ ${table.getFilteredRowModel().rows.length}`}
+