diff --git a/client/src/components/Dashboard/Dashboard.css b/client/src/components/Dashboard/Dashboard.css index 73ea0567..04522ef6 100644 --- a/client/src/components/Dashboard/Dashboard.css +++ b/client/src/components/Dashboard/Dashboard.css @@ -1,10 +1,11 @@ .stats__table .popover__body { - left: 0; + left: -10px; + min-width: 270px; transform: none; } .stats__table .popover__body:after { - left: 13px; + left: 23px; } .stats__table .rt-tr-group:first-child .popover__body, diff --git a/client/src/components/Dashboard/DomainCell.js b/client/src/components/Dashboard/DomainCell.js index c613c268..76bb0877 100644 --- a/client/src/components/Dashboard/DomainCell.js +++ b/client/src/components/Dashboard/DomainCell.js @@ -9,7 +9,7 @@ const DomainCell = ({ value }) => { return (
-
+
{value}
{trackerData && } diff --git a/client/src/components/Logs/Logs.css b/client/src/components/Logs/Logs.css index 5a79ed85..9b2c8b21 100644 --- a/client/src/components/Logs/Logs.css +++ b/client/src/components/Logs/Logs.css @@ -41,11 +41,20 @@ width: 100%; } -.logs__text--wrap { +.logs__text--domain { + max-width: 285px; +} + +.logs__text--wrap, +.logs__text--whois { line-height: 1.4; white-space: normal; } +.logs__text--whois { + line-height: 1.2; +} + .logs__row .tooltip-custom { top: 0; margin-left: 0; @@ -152,11 +161,13 @@ .logs__whois { display: inline; + font-size: 12px; } .logs__whois::after { content: "|"; padding: 0 5px; + opacity: 0.3; } .logs__whois:last-child::after { @@ -166,8 +177,8 @@ .logs__whois-icon.icons { position: relative; top: -2px; - width: 16px; - height: 16px; - margin-right: 2px; - opacity: 0.6; + width: 12px; + height: 12px; + margin-right: 1px; + opacity: 0.5; } diff --git a/client/src/helpers/formatClientCell.js b/client/src/helpers/formatClientCell.js index 054b41f6..931210a7 100644 --- a/client/src/helpers/formatClientCell.js +++ b/client/src/helpers/formatClientCell.js @@ -38,7 +38,7 @@ export const formatClientCell = (value, clients, autoClients, t) => { if (whois) { whoisContainer = ( -
+
{getFormattedWhois(whois, t)}
);