Use px-based values over em-based ones for media queries

This commit is contained in:
2023-03-08 13:41:57 +01:00
parent 063a330f74
commit 50f682dbc2
8 changed files with 13 additions and 13 deletions

View File

@ -10,7 +10,7 @@
box-shadow: 0px 4px 2px -2px var(--color-borders-dark); }
#newToolTipMain > * { padding: .5rem 1rem !important; }
#newToolTipMain > table td { padding: .5rem 1em; vertical-align: top; }
@media screen and (min-width:75em) {
@media screen and (min-width: 768px) {
#newToolTipMain.visible { display: block !important; }
}