- client: fix font size of whois info

This commit is contained in:
Ildar Kamalov 2019-10-10 18:57:39 +03:00
parent 3fbbda5102
commit d23fdaf18f
2 changed files with 13 additions and 6 deletions

View File

@ -41,11 +41,16 @@
width: 100%;
}
.logs__text--wrap {
.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 +157,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 +173,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;
}

View File

@ -38,7 +38,7 @@ export const formatClientCell = (value, clients, autoClients, t) => {
if (whois) {
whoisContainer = (
<div className="logs__text logs__text--wrap mt-1">
<div className="logs__text logs__text--wrap logs__text--whois">
{getFormattedWhois(whois, t)}
</div>
);