diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-21 16:54:32 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-21 16:54:32 -0500 | 
| commit | e8d22b883ba0640e4a6b376ddce236edb3e2b846 (patch) | |
| tree | a192495e2dcbf88974d7d7e4b60cb9b68e92ed56 | |
| parent | b7789749380a6e101adbca82c37a55dcd5fe31a4 (diff) | |
Fix missing spacing after frequency disambiguation (#1432)
| -rw-r--r-- | ext/css/display.css | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/ext/css/display.css b/ext/css/display.css index ec117a1c..0779d44e 100644 --- a/ext/css/display.css +++ b/ext/css/display.css @@ -1089,6 +1089,7 @@ button.action-button[data-icon=source-term]::before {  }  .frequency-disambiguation {      color: var(--text-color-light3); +    padding-right: 0.25em;  }  .frequency-separator::before {      content: ''; @@ -1100,7 +1101,7 @@ button.action-button[data-icon=source-term]::before {      content: '(';  }  .frequency-disambiguation::after { -    content: ' only) '; +    content: ' only)';  }  .frequency-disambiguation-reading {      display: inline; |