diff --git a/src/app/styles/pages-styles.scss b/src/app/styles/pages-styles.scss index f74a3b5..c7f18d8 100644 --- a/src/app/styles/pages-styles.scss +++ b/src/app/styles/pages-styles.scss @@ -727,6 +727,11 @@ border-radius: 10px; color: v.$p-color; + &:disabled { + opacity: 0.5; + cursor: not-allowed; + } + &.current { background-color: v.$p-color; color: v.$white; @@ -4460,6 +4465,11 @@ margin-bottom: 10px; gap: 5px; + &-left { + display: flex; + flex-direction: column; + } + &-right { display: flex; flex-direction: column; @@ -4468,8 +4478,18 @@ } .source-image { - max-width: 120px; - width: 100%; + max-height: 80%; + min-height: 50px; + height: 100%; + + img { + height: 100%; + border-radius: 8px; + } + } + + .source-url-block { + margin-top: auto; } .source-url { @@ -4648,6 +4668,7 @@ a { color: #6366f1; + word-break: break-all; } } @@ -4738,6 +4759,11 @@ border-radius: 10px; color: v.$p-color; + &:disabled { + opacity: 0.5; + cursor: not-allowed; + } + &.current { background-color: v.$p-color; color: v.$white; diff --git a/src/app/ui/file-page/violation-table/file-page-violation-epmty-screen.tsx b/src/app/ui/file-page/violation-table/file-page-violation-epmty-screen.tsx new file mode 100644 index 0000000..0fc8de9 --- /dev/null +++ b/src/app/ui/file-page/violation-table/file-page-violation-epmty-screen.tsx @@ -0,0 +1,19 @@ +'use client' + +import { useTranslations } from 'next-intl' + +export default function FilePageViolationEpmtyScreen() { + const t = useTranslations('Global'); + + return ( +