Projet

Général

Profil

0001-CSS-use-em-instead-px-to-define-PWA-notification-bad.patch

Thomas Jund, 31 août 2021 11:59

Télécharger (770 octets)

Voir les différences:

Subject: [PATCH] CSS: use em instead px to define PWA notification badge size
 (#56509)

 static/includes/_nav.scss | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
static/includes/_nav.scss
419 419
						top: 10px;
420 420
						left: calc(50% + 10px);
421 421
						border-radius: 100%;
422
						height: 16px;
423
						line-height: 16px;
424
						width: 16px;
422
						height: 2em;
423
						line-height: 2em;
424
						width: 2em;
425 425
					}
426 426
				}
427 427
			}
428
-