1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-03 01:29:39 +02:00

Fix inconsistent spacing in panel's statistics section

This commit is contained in:
Raymond Hill 2020-05-17 12:30:04 -04:00
parent 9c3e9eff1c
commit ddc03154d7
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -121,7 +121,7 @@ body.needSave #revertRules {
column-gap: var(--popup-gap);
display: grid;
grid-template: auto / auto;
margin: var(--popup-gap) var(--popup-gap) 0 var(--popup-gap);
margin: var(--popup-gap) var(--popup-gap) var(--popup-gap-thin) var(--popup-gap);
}
#basicStats > span {
justify-self: center;
@ -132,10 +132,11 @@ body.needSave #revertRules {
}
#basicStats > [data-i18n] + span {
font-size: 105%;
margin-bottom: var(--popup-gap);
margin-bottom: var(--popup-gap-thin);
}
:root.portrait #basicStats {
grid-template: auto / auto auto;
margin-bottom: 0;
}
:root.portrait #basicStats > span {
font-size: inherit;