replace text-decoration: underline with border-bottom to prevent gap in underline bellow "p"

This commit is contained in:
schlagmichdoch 2023-02-11 11:44:11 +01:00
parent b933ef151a
commit 115c0785e5
2 changed files with 6 additions and 13 deletions

View file

@ -380,22 +380,17 @@ footer .logo {
footer .font-body2 { footer .font-body2 {
color: var(--primary-color); color: var(--primary-color);
text-underline-position: under;
margin: auto 18px; margin: auto 18px;
} }
#on-this-network { #on-this-network {
text-decoration-line: underline; border-bottom: solid 4px var(--primary-color);
text-decoration-style: solid; padding-bottom: 1px;
text-decoration-color: var(--primary-color);
text-decoration-thickness: 4px;
} }
#paired-devices { #paired-devices {
text-decoration-line: underline; border-bottom: solid 4px var(--paired-device-color);
text-decoration-style: solid; padding-bottom: 1px;
text-decoration-color: var(--paired-device-color);
text-decoration-thickness: 4px;
} }
/* Dialog */ /* Dialog */

View file

@ -904,10 +904,8 @@ x-peers:empty~x-instructions {
} }
.websocket-fallback { .websocket-fallback {
text-decoration-line: underline; border-bottom: solid 4px var(--ws-peer-color);
text-decoration-style: solid; padding-bottom: 1px;
text-decoration-color: var(--ws-peer-color);
text-decoration-thickness: 4px;
} }
/* Responsive Styles */ /* Responsive Styles */